Get the number of members in the object.
| 799 | |
| 800 | //! Get the number of members in the object. |
| 801 | SizeType MemberCount() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size; } |
| 802 | |
| 803 | //! Check whether the object is empty. |
| 804 | bool ObjectEmpty() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size == 0; } |
nothing calls this directly
no test coverage detected