enqueueAll method

MQueue<A> enqueueAll(
  1. RIterableOnce<A> elems
)

Adds all elems at the back of the queue and returns this.

Implementation

MQueue<A> enqueueAll(RIterableOnce<A> elems) {
  super.addAll(elems);
  return this;
}