Get the number of members in the object.
| 1027 | |
| 1028 | //! Get the number of members in the object. |
| 1029 | SizeType MemberCount() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size; } |
| 1030 | |
| 1031 | //! Check whether the object is empty. |
| 1032 | bool ObjectEmpty() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size == 0; } |
nothing calls this directly
no test coverage detected