Skip to content

Instantly share code, notes, and snippets.

@rauhs
Last active September 18, 2015 15:55
Show Gist options
  • Save rauhs/f4a3c9852f833d85fff6 to your computer and use it in GitHub Desktop.
Save rauhs/f4a3c9852f833d85fff6 to your computer and use it in GitHub Desktop.
Clojure prismatic schema for max min values. Kewords: Between, less-than greater-than
(defn between
[min max]
(s/pred #(<= min % max) (list 'between min max)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment