add method

void add(
  1. T t
)

Implementation

void add(T t) {
  _list.add(t);
}