| 2505 | ValueIterator End() const { return value_.End(); } |
| 2506 | GenericArray Reserve(SizeType newCapacity, AllocatorType &allocator) const { value_.Reserve(newCapacity, allocator); return *this; } |
| 2507 | GenericArray PushBack(ValueType& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; } |
| 2508 | #if RAPIDJSON_HAS_CXX11_RVALUE_REFS |
| 2509 | GenericArray PushBack(ValueType&& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; } |
| 2510 | #endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS |
no outgoing calls
no test coverage detected