Get the capacity of array.
| 1505 | |
| 1506 | //! Get the capacity of array. |
| 1507 | SizeType Capacity() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.capacity; } |
| 1508 | |
| 1509 | //! Check whether the array is empty. |
| 1510 | bool Empty() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.size == 0; } |