| 2502 | void Clear() const { value_.Clear(); } |
| 2503 | ValueType& operator[](SizeType index) const { return value_[index]; } |
| 2504 | ValueIterator Begin() const { return value_.Begin(); } |
| 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; } |