auto-core.data.fixed-size-queue
Naive implementation of fixed length queue.
A more efficient approach, if needed could be found in this blog post which is based on clojure rrb.
content
(content queue)enqueue
(enqueue queue x)init
(init size)peek
(peek queue)pop
(pop queue)