poll method

T poll()

Implementation

T poll() {
  T t = queue.removeFirst();
  --size;
  return t;
}