std.json.JsonValue - nitrologic/monkey2 GitHub Wiki
std::std.json.JsonValue
Class JsonValue
JsonValue class.
This is base class of all JsonValue types.
| Properties |
|
| IsArray |
True if value is an array. (read only) |
| IsBool |
True if value is a bool. (read only) |
| IsNull |
True if value is null. (read only) |
| IsNumber |
True if value is a number. (read only) |
| IsObject |
True if value is an object. (read only) |
| IsString |
True if value is a string. (read only) |
| Functions |
|
| Load |
Load the value from a JSON string stored in a file. |
| Parse |
Creates a JSONValue from a JSON string. |