| 2463 | ValueIterator End() const { return value_.End(); } |
| 2464 | GenericArray Reserve(SizeType newCapacity, AllocatorType &allocator) const { value_.Reserve(newCapacity, allocator); return *this; } |
| 2465 | GenericArray PushBack(ValueType& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; } |
| 2466 | #if RAPIDJSON_HAS_CXX11_RVALUE_REFS |
| 2467 | GenericArray PushBack(ValueType&& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; } |
| 2468 | #endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS |
no outgoing calls