| 3025 | MemberIterator FindMember(const std::basic_string<Ch>& name) const { return value_.FindMember(name); } |
| 3026 | #endif |
| 3027 | GenericObject AddMember(ValueType& name, ValueType& value, AllocatorType& allocator) const { value_.AddMember(name, value, allocator); return *this; } |
| 3028 | GenericObject AddMember(ValueType& name, StringRefType value, AllocatorType& allocator) const { value_.AddMember(name, value, allocator); return *this; } |
| 3029 | #if RAPIDJSON_HAS_STDSTRING |
| 3030 | 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