Home | History | Annotate | Download | only in json

Lines Matching defs:arrayValue

44   arrayValue,    ///< array value (ordered list)
102 * values of an #objectValue or #arrayValue can be accessed using operator[]()
106 * The sequence of an #arrayValue will be automatically resize and initialized
107 * with #nullValue. resize() can be used to enlarge or truncate an #arrayValue.
200 To create an empty array, pass arrayValue.
208 Json::Value arr_value(Json::arrayValue); // []
302 /// \pre type() is arrayValue, objectValue, or nullValue
308 /// May only be called on nullValue or arrayValue.
309 /// \pre type() is arrayValue or nullValue
310 /// \post type() is arrayValue
937 /// Return the index of the referenced Value. -1 if it is not an arrayValue.