Check whether the object is empty.
| 802 | |
| 803 | //! Check whether the object is empty. |
| 804 | bool ObjectEmpty() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size == 0; } |
| 805 | |
| 806 | //! Get a value from an object associated with the name. |
| 807 | /*! \pre IsObject() == true |
nothing calls this directly
no test coverage detected