Check whether the array is empty.
| 1508 | |
| 1509 | //! Check whether the array is empty. |
| 1510 | bool Empty() const { RAPIDJSON_ASSERT(IsArray()); return data_.a.size == 0; } |
| 1511 | |
| 1512 | //! Remove all elements in the array. |
| 1513 | /*! This function do not deallocate memory in the array, i.e. the capacity is unchanged. |
no test coverage detected