mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-08-03 04:34:45 +02:00
Updated API Reference (markdown)
@@ -389,6 +389,7 @@ This will create a "prettified" JSON, if you want a compact JSON without space o
|
||||
|
||||
```c++
|
||||
size_t prettyPrintTo(char* buffer, size_t size) const;
|
||||
size_t prettyPrintTo(char buffer[size]) const;
|
||||
size_t prettyPrintTo(Print &) const;
|
||||
size_t prettyPrintTo(String &) const;
|
||||
size_t prettyPrintTo(std::string &) const;
|
||||
@@ -441,6 +442,7 @@ This will create a compact JSON, if you want a pretty JSON with spaces and line
|
||||
|
||||
```c++
|
||||
size_t printTo(char* buffer, size_t size) const;
|
||||
size_t printTo(char buffer[size]) const;
|
||||
size_t printTo(Print &) const;
|
||||
size_t printTo(String &) const;
|
||||
size_t printTo(std::string &) const;
|
||||
@@ -1171,6 +1173,7 @@ This will create a "prettified" JSON, if you want a compact JSON without space o
|
||||
|
||||
```c++
|
||||
size_t prettyPrintTo(char* buffer, size_t size) const;
|
||||
size_t prettyPrintTo(char buffer[size]) const;
|
||||
size_t prettyPrintTo(Print &) const;
|
||||
size_t prettyPrintTo(String &) const;
|
||||
size_t prettyPrintTo(std::string &) const;
|
||||
@@ -1221,6 +1224,7 @@ This will create a compact JSON, if you want a pretty JSON with spaces and line
|
||||
|
||||
```c++
|
||||
size_t printTo(char* buffer, size_t size) const;
|
||||
size_t printTo(char buffer[size]) const;
|
||||
size_t printTo(Print &) const;
|
||||
size_t printTo(String &) const;
|
||||
size_t printTo(std::string &) const;
|
||||
|
Reference in New Issue
Block a user