add method

void add(
  1. T v
)

Implementation

void add(T v) {
  values.add(v);
}