Check whether the object is empty.
| 1103 | |
| 1104 | //! Check whether the object is empty. |
| 1105 | bool ObjectEmpty() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size == 0; } |
| 1106 | |
| 1107 | //! Get a value from an object associated with the name. |
| 1108 | /*! \pre IsObject() == true |
nothing calls this directly
no test coverage detected