Home | History | Annotate | Download | only in json

Lines Matching defs:arrayValue

427   arrayValue,    ///< array value (ordered list)
485 * Values of an #objectValue or #arrayValue can be accessed using operator[]()
489 * The sequence of an #arrayValue will be automatically resized and initialized
490 * with #nullValue. resize() can be used to enlarge or truncate an #arrayValue.
594 To create an empty array, pass arrayValue.
602 Json::Value arr_value(Json::arrayValue); // []
708 /// \pre type() is arrayValue, objectValue, or nullValue
714 /// May only be called on nullValue or arrayValue.
715 /// \pre type() is arrayValue or nullValue
716 /// \post type() is arrayValue
1025 /// Return the index of the referenced Value, or -1 if it is not an arrayValue.