Get the number of elements in array.
| 1136 | |
| 1137 | //! Get the number of elements in array. |
| 1138 | SizeType Size() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.size; } |
| 1139 | |
| 1140 | //! Get the capacity of array. |
| 1141 | SizeType Capacity() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.capacity; } |