Remove a member in object by its name. ! \param name Name of member to be removed. \return Whether the member existed. \note This function may reorder the object members. Use \ref EraseMember(ConstMemberIterator) if you need to preserve the relative order of the remaining members. \note Linear time complexity. */
| 1381 | \note Linear time complexity. |
| 1382 | */ |
| 1383 | bool RemoveMember(const Ch* name) { |
| 1384 | GenericValue n(StringRef(name)); |
| 1385 | return RemoveMember(n); |
| 1386 | } |
| 1387 | |
| 1388 | #if RAPIDJSON_HAS_STDSTRING |
| 1389 | bool RemoveMember(const std::basic_string<Ch>& name) { return RemoveMember(GenericValue(StringRef(name))); } |
nothing calls this directly
no test coverage detected