I would like to be able to call clojure functions using keyword arguments like this:
(do-something :arg1 1 :arg2 "Hello")
: Is this possible without having to do:
(do-something {:arg1 1 :arg2 "Hello"})
: and could I also use :pre pre-conditions to provide somse sort of validation to make sure all arguments are included?