Get the number of elements in array.
| 1568 | |
| 1569 | //! Get the number of elements in array. |
| 1570 | SizeType Size() const { CEREAL_RAPIDJSON_ASSERT(IsArray()); return data_.a.size; } |
| 1571 | |
| 1572 | //! Get the capacity of array. |
| 1573 | SizeType Capacity() const { CEREAL_RAPIDJSON_ASSERT(IsArray()); return data_.a.capacity; } |