Get the number of elements in array.
| 1641 | |
| 1642 | //! Get the number of elements in array. |
| 1643 | SizeType Size() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.size; } |
| 1644 | |
| 1645 | //! Get the capacity of array. |
| 1646 | SizeType Capacity() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.capacity; } |