add method

void add(
  1. E elem
)

Implementation

void add(E elem) {
  content.add(elem);
}