MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / FindMember

Function FindMember

Source/ThirdParty/rapidjson/document.h:1337–1340  ·  view source on GitHub ↗

Find member by name. ! \param name Member name to be searched. \pre IsObject() == true \return Iterator to member, if it exists. Otherwise returns \ref MemberEnd(). \note Earlier versions of Rapidjson returned a \c NULL pointer, in case the requested member doesn't exist. For consistency with e.g. \c std::map, this has been chang

Source from the content-addressed store, hash-verified

1335 \note Linear time complexity.
1336 */
1337 MemberIterator FindMember(const Ch* name) {
1338 GenericValue n(StringRef(name));
1339 return FindMember(n);
1340 }
1341
1342 ConstMemberIterator FindMember(const Ch* name) const { return const_cast<GenericValue&>(*this).FindMember(name); }
1343

Callers 4

document.hFile · 0.85
HasMemberFunction · 0.85
RemoveMemberFunction · 0.85
EraseMemberFunction · 0.85

Calls 5

IsObjectFunction · 0.85
DoFindMemberFunction · 0.85
FindMemberMethod · 0.80
StringRefFunction · 0.70
GenericValueFunction · 0.70

Tested by

no test coverage detected