Check whether the object is empty.
| 1030 | |
| 1031 | //! Check whether the object is empty. |
| 1032 | bool ObjectEmpty() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size == 0; } |
| 1033 | |
| 1034 | //! Get a value from an object associated with the name. |
| 1035 | /*! \pre IsObject() == true |
nothing calls this directly
no test coverage detected