Check whether the object is empty.
| 1110 | |
| 1111 | //! Check whether the object is empty. |
| 1112 | bool ObjectEmpty() const { CEREAL_RAPIDJSON_ASSERT(IsObject()); return data_.o.size == 0; } |
| 1113 | |
| 1114 | //! Get a value from an object associated with the name. |
| 1115 | /*! \pre IsObject() == true |
nothing calls this directly
no test coverage detected