Last active
September 18, 2015 15:55
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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