JsonBuilder is used to create arbitrary JSON. Contains a JSON value, which may be an object or array. Arrays and objects may contain other values, objects, or arrays.
|
|
constexpr | JsonBuilder (span< char > buffer) |
| | Initializes to the value null. buffer.size() must be at least 5.
|
| |
|
constexpr | JsonBuilder (char *buffer, size_t buffer_size) |
| | Initializes to the value null. buffer_size must be at least 5.
|
| |
|
constexpr bool | IsValue () const |
| | True if the top-level JSON entity is a simple value (not array or object).
|
| |
|
constexpr bool | IsArray () const |
| | True if the top-level JSON entity is an array.
|
| |
|
constexpr bool | IsObject () const |
| | True if the top-level JSON entity is an object.
|
| |
|
constexpr | operator std::string_view () const |
| | JsonBuilder converts to std::string_view.
|
| |
|
constexpr const char * | data () const |
| | Pointer to the serialized JSON, which is always a null-terminated string.
|
| |
|
constexpr size_t | size () const |
| | The current size of the JSON string, excluding the null terminator.
|
| |
|
constexpr size_t | max_size () const |
| | The maximum size of the JSON string, excluding the null terminator.
|
| |
| constexpr bool | ok () const |
| | True if.
|
| |
| constexpr Status | status () const |
| |
| constexpr Status | last_status () const |
| |
|
constexpr void | clear () |
| | Sets the JSON null and clears the status.
|
| |
|
constexpr void | clear_status () |
| | Resets status() and last_status().
|
| |
|
template<typename T > |
| constexpr Status | SetValue (const T &value) |
| | Clears the JSON and sets it to a single JSON value (see JsonValue::Set).
|
| |
| constexpr JsonValue & | StartValue () |
| |
| constexpr JsonArray & | StartArray () |
| |
| constexpr JsonObject & | StartObject () |
| |