For example
(map #(+ 10 %1) [ 1 3 5 7 ])
Will add 10 to everything
Suppose I want to map everything to the constant 1. I have tried
(map #(1) [ 1 3 5 7 ])
But I don't understand the compiler error.
|
For example
Will add 10 to everything Suppose I want to map everything to the constant 1. I have tried
But I don't understand the compiler error. |
|||||
|
Won't work for two reasons:
Here are some alternatives that will work:
Of the above, I think the versions using constantly or for should be preferred - these are clearer and more idiomatic. |
|||
|
|
The anonymous function (fn [%1] (+ 10 %1)) Whereas (fn [] (1)) And trying to call |
|||
|
|
|
I got this from clojure.org by googling the words "clojure constant function" as I am just beginning to look at clojure
cheers |
||||
|