Check whether a member exists in the object. ! \param name Member name to be searched. \pre IsObject() == true \return Whether a member with that name exists. \note It is better to use FindMember() directly if you need the obtain the value as well. \note Linear time complexity. */
| 1105 | \note Linear time complexity. |
| 1106 | */ |
| 1107 | bool HasMember(const Ch* name) const { return FindMember(name) != MemberEnd(); } |
| 1108 | |
| 1109 | #if RAPIDJSON_HAS_STDSTRING |
| 1110 | //! Check whether a member exists in the object with string object. |
nothing calls this directly
no test coverage detected