|
◆ size()
template< template< typename U, typename V, typename... Args > class ObjectType = std::map, template< typename U, typename... Args > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator, template< typename T, typename SFINAE= void > class JSONSerializer = adl_serializer>
Returns the number of elements in a JSON value.
- Returns
- The return value depends on the different types and is defined as follows:
Value type | return value |
null | 0 |
boolean | 1 |
string | 1 |
number | 1 |
object | result of function object_t::size() |
array | result of function array_t::size() |
- Note
- This function does not return the length of a string stored as JSON value - it returns the number of elements in the JSON value which is 1 in the case of a string.
- Complexity\n Constant, as long as @ref array_t and @ref object_t satisfy
- the Container concept; that is, their size() functions have constant complexity.
- Requirements\n This function helps
basic_json satisfying the - Container requirements:
- The complexity is constant.
- Has the semantics of
std::distance(begin(), end()) .
- Example\n The following code calls
size() on the different value - types.
size_type size() const noexcept returns the number of elements
static basic_json array(std::initializer_list< basic_json > init=std::initializer_list< basic_json >()) explicitly create an array from an initializer list
static basic_json object(std::initializer_list< basic_json > init=std::initializer_list< basic_json >()) explicitly create an object from an initializer list
a class to store JSON values
basic_json<> json default JSON class
Output (play with this example online):
0
1
1
1
2
0
5
0
1
The example code above can be translated with g++ -std=c++11 -Isrc doc/examples/size.cpp -o size
- See also
- empty() – checks whether the container is empty
-
max_size() – returns the maximal number of elements
- Since
- version 1.0.0
Definition at line 5063 of file json.hpp.
|