set method

void set(
  1. int index,
  2. E element
)

Implementation

void set(int index,  E element) {
  content[index] = element;
}