Get the number of elements in array.
| 1561 | |
| 1562 | //! Get the number of elements in array. |
| 1563 | SizeType Size() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.size; } |
| 1564 | |
| 1565 | //! Get the capacity of array. |
| 1566 | SizeType Capacity() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.capacity; } |