Get the capacity of array.
| 1644 | |
| 1645 | //! Get the capacity of array. |
| 1646 | SizeType Capacity() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.capacity; } |
| 1647 | |
| 1648 | //! Check whether the array is empty. |
| 1649 | bool Empty() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.size == 0; } |