/** * Offer items to the queue. */ export function unsafeOfferAll(queue: MutableQueue, as: Chunk): Chunk { return queue.offerAll(as) }