add method

void add(
  1. E item
)

Implementation

void add(E item) {
  this.insert(0, item);
}