| 2956 | ValueIterator End() const { return value_.End(); } |
| 2957 | GenericArray Reserve(SizeType newCapacity, AllocatorType &allocator) const { value_.Reserve(newCapacity, allocator); return *this; } |
| 2958 | GenericArray PushBack(ValueType& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; } |
| 2959 | #if RAPIDJSON_HAS_CXX11_RVALUE_REFS |
| 2960 | GenericArray PushBack(ValueType&& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; } |
| 2961 | #endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS |
no outgoing calls
no test coverage detected