import { Queue } from "https://deno.land/x/sptaki@1.2.0/utils/collections/mod.ts";
Methods
Removes the first element from the queue and returns it's value. If the queue is empty, undefined is returned and the queue is not modified.
enqueueAll(elements: T[]): void
Iterates over the elements received and adds each one to the end of the queue.