MCPcopy Create free account
hub / github.com/USCiLab/cereal / RemoveMember

Method RemoveMember

include/cereal/external/rapidjson/document.h:2631–2631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2629 template <typename T> CEREAL_RAPIDJSON_DISABLEIF_RETURN((internal::OrExpr<internal::IsPointer<T>, internal::IsGenericValue<T> >), (GenericObject)) AddMember(StringRefType name, T value, AllocatorType& allocator) const { value_.AddMember(name, value, allocator); return *this; }
2630 void RemoveAllMembers() { value_.RemoveAllMembers(); }
2631 bool RemoveMember(const Ch* name) const { return value_.RemoveMember(name); }
2632#if CEREAL_RAPIDJSON_HAS_STDSTRING
2633 bool RemoveMember(const std::basic_string<Ch>& name) const { return value_.RemoveMember(name); }
2634#endif

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected