parseJSONArray()
Input / FilesDescription
Parses a JSON array string and returns a JSONValue.
Syntax
JSONValue parseJSONArray(std::string s)
Parameters
| Name | Type | Description |
|---|---|---|
| s | std::string | JSON array string to parse |
Returns
JSONValueRelated
Under the Hood
From Processing.h:
static JSONValue parseJSONArray(const std::string& s) { return parseJSON(s); }