I would like to be able to call clojure functions using keyword arguments as follows:
(do-something :arg1 1 :arg2 "Hello")
: Is this possible without the need:
(do-something {:arg1 1 :arg2 "Hello"})
: and can I use: preconditions to provide a somse kind of check to make sure all arguments are included?
source
share