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