Skip to content

Instantly share code, notes, and snippets.

@nick-orton
Created January 30, 2011 02:50
Show Gist options
  • Save nick-orton/802468 to your computer and use it in GitHub Desktop.
Save nick-orton/802468 to your computer and use it in GitHub Desktop.
remove the top element if predicate matches
(defn pop-if
[predicate stack]
(if (predicate (first stack))
(rest stack)
stack))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment