Check whether the array is empty.
| 1647 | |
| 1648 | //! Check whether the array is empty. |
| 1649 | bool Empty() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.size == 0; } |
| 1650 | |
| 1651 | //! Remove all elements in the array. |
| 1652 | /*! This function do not deallocate memory in the array, i.e. the capacity is unchanged. |
no test coverage detected