Does Clojure have named arguments? If so, can you please provide a small example of it?
|
In Clojure 1.2, you can destructure the
Anything you can do while destructuring a Clojure map can be done in a function's argument list as shown above. Including using :or to define defaults for the arguments like this:
But this is in Clojure 1.2. Alternatively, in older versions, you can do this to simulate the same thing:
and that works generally the same way. And you can also have positional arguments that come before the keyword arguments:
These are not optional and have to be provided. You can actually destructure the
You can do this sort of thing even in Clojure 1.1. The map-style destructuring for keyword arguments only came in 1.2 though. |
|||||||
|
|
In addition to Raynes' excellent answer, there is also a macro in clojure-contrib that makes life easier:
user=> (use '[clojure.contrib.def :only [defnk]])
nil
user=> (defnk foo [a b :c 8 :d 9]
[a b c d])
#'user/foo
user=> (foo 1 2)
[1 2 8 9]
user=> (foo 1 2 3)
java.lang.IllegalArgumentException: No value supplied for key: 3 (NO_SOURCE_FILE:0)
user=> (foo 1 2 :c 3)
[1 2 3 9]
|
|||||
|
|
Do you perhaps mean named parameters? These aren't directly available, but you can use this vectors approach if you like, which may give you what you want. At RosettaCode there's a deeper explanation on how to do this using destructuring. |
|||
|
|