| 2571 | MemberIterator FindMember(const std::basic_string<Ch>& name) const { return value_.FindMember(name); } |
| 2572 | #endif |
| 2573 | GenericObject AddMember(ValueType& name, ValueType& value, AllocatorType& allocator) const { value_.AddMember(name, value, allocator); return *this; } |
| 2574 | GenericObject AddMember(ValueType& name, StringRefType value, AllocatorType& allocator) const { value_.AddMember(name, value, allocator); return *this; } |
| 2575 | #if RAPIDJSON_HAS_STDSTRING |
| 2576 | GenericObject AddMember(ValueType& name, std::basic_string<Ch>& value, AllocatorType& allocator) const { value_.AddMember(name, value, allocator); return *this; } |
no outgoing calls
no test coverage detected