push method

void push(
  1. T value
)

Implementation

void push(T value) {
  grow(1);
  _storage[_size++] = value;
}