Free Electron
|
Outputs a Value in JSON format without formatting (not human friendly). More...
#include <writer.h>
Public Member Functions | |
void | enableYAMLCompatibility () |
void | dropNullPlaceholders () |
Drop the "null" string from the writer's output for nullValues. More... | |
void | omitEndingLineFeed () |
String | write (const Value &root) override |
Private Member Functions | |
void | writeValue (const Value &value) |
Private Attributes | |
String | document_ |
bool | yamlCompatibilityEnabled_ {false} |
bool | dropNullPlaceholders_ {false} |
bool | omitEndingLineFeed_ {false} |
Outputs a Value in JSON format without formatting (not human friendly).
The JSON document is written in a single line. It is not intended for 'human' consumption, but may be useful to support feature such as RPC where bandwidth is limited.
void Json::FastWriter::dropNullPlaceholders | ( | ) |
Drop the "null" string from the writer's output for nullValues.
Strictly speaking, this is not valid JSON. But when the output is being fed to a browser's JavaScript, it makes for smaller output and the browser can handle the output just fine.