How could one write the identity function in clojure using anonymous function literal (#())?

The following code doesn't work:

(#(%) 5)

It raises an exception because it is converted to:

((fn[x] (x)) 5)

The problem in that when using #(), the function body is enveloped with parentheses. Any idea, how to elegantly overcome this?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

Well, first of all, there is the identity function.

But you can use

#(do %)

if you insist.

link|improve this answer
1  
Nice answer. If you know the parameter is a number, you can also do #(+ %) and save a character :-) – mikera Feb 5 at 14:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.