I want to supply a default value which can be overridden. I know I can use a ternary, like this:
(def foo (if (not (nil? bar)) bar baz))
But surely there is a more idiomatic way in Clojure to say "use bar, or baz if bar is nil.
Any suggestions?
|
|
|
This will assign
EDIT If you wish to check for
I believe, this is the shortest possible way, though not idiomatic. |
|||||||||||
|
|
Your question doesn't specifically ask about multiple vars, but if you did want this defaulting for more than one var the idiomatic way to do it is to use destructuring on map with e.g. Take this function that takes a map argument
|
|||
|
|
|
|
|||
|
|