add method

void add (E element)
override

Adds value at the end of the queue.

Implementation

void add(E element) {
  _add(element);
}