Check whether the object is empty.
| 1195 | |
| 1196 | //! Check whether the object is empty. |
| 1197 | bool ObjectEmpty() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size == 0; } |
| 1198 | |
| 1199 | //! Get a value from an object associated with the name. |
| 1200 | /*! \pre IsObject() == true |
nothing calls this directly
no test coverage detected