push method

T push(
  1. T element
)

Implementation

T push(T element) {
  _underlyingQueue.addLast(element);
  return element;
}