Updated API Reference (markdown)

Benoît Blanchon
2016-12-10 16:05:47 +01:00
parent a305102eb0
commit 1a7161dbf4

@@ -389,6 +389,7 @@ This will create a "prettified" JSON, if you want a compact JSON without space o
```c++ ```c++
size_t prettyPrintTo(char* buffer, size_t size) const; size_t prettyPrintTo(char* buffer, size_t size) const;
size_t prettyPrintTo(char buffer[size]) const;
size_t prettyPrintTo(Print &) const; size_t prettyPrintTo(Print &) const;
size_t prettyPrintTo(String &) const; size_t prettyPrintTo(String &) const;
size_t prettyPrintTo(std::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++ ```c++
size_t printTo(char* buffer, size_t size) const; size_t printTo(char* buffer, size_t size) const;
size_t printTo(char buffer[size]) const;
size_t printTo(Print &) const; size_t printTo(Print &) const;
size_t printTo(String &) const; size_t printTo(String &) const;
size_t printTo(std::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++ ```c++
size_t prettyPrintTo(char* buffer, size_t size) const; size_t prettyPrintTo(char* buffer, size_t size) const;
size_t prettyPrintTo(char buffer[size]) const;
size_t prettyPrintTo(Print &) const; size_t prettyPrintTo(Print &) const;
size_t prettyPrintTo(String &) const; size_t prettyPrintTo(String &) const;
size_t prettyPrintTo(std::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++ ```c++
size_t printTo(char* buffer, size_t size) const; size_t printTo(char* buffer, size_t size) const;
size_t printTo(char buffer[size]) const;
size_t printTo(Print &) const; size_t printTo(Print &) const;
size_t printTo(String &) const; size_t printTo(String &) const;
size_t printTo(std::string &) const; size_t printTo(std::string &) const;