Get the number of members in the object.
| 1097 | |
| 1098 | //! Get the number of members in the object. |
| 1099 | SizeType MemberCount() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.size; } |
| 1100 | |
| 1101 | //! Get the capacity of object. |
| 1102 | SizeType MemberCapacity() const { RAPIDJSON_ASSERT(IsObject()); return data_.o.capacity; } |
nothing calls this directly
no test coverage detected