Skip to content

Instantly share code, notes, and snippets.

@opqdonut
Created August 27, 2013 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save opqdonut/6355918 to your computer and use it in GitHub Desktop.
Save opqdonut/6355918 to your computer and use it in GitHub Desktop.
Clojure queue using one atom
(ns q)
(defn empty-queue []
(atom [::invalid]))
(defn push! [q val]
(swap! q conj val))
(defn pop! [q]
(first (swap! q subvec 1)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment