I would like to know why most Common Lisp code I see has things like
(mapcar #'(lambda (x) (* x x)) '(1 2 3))
instead of just
(mapcar (lambda (x) (* x x)) '(1 2 3))
,
which seems to work as well. I am beginning to learn Common Lisp, and having some background in Scheme, this intrigues me.
Edit: I know that you need #' with function names because they live in a different namespace than variables. My question is just about #' before lambda, as lambda already returns a function object (I think). The fact that #'-less lambdas work because of a macro expansion just makes it more intriguing...
Who Are You was the Who's last album to feature Keith Moon as their drummer, who died three weeks after it was released. The ironic nature of the text "Not to Be Taken Away" that was stencilled on Moon's chair on the album cover was noted by some critics.
"Why" is a song recorded by American singer Sabrina Carpenter included on the Japanese edition of Singular: Act I (2018). The track was written by Carpenter, Brett McLaughlin, and its producer Jonas Jeberg. The song was released on July 7, 2017, through Hollywood Records.
#'foo
is an abbreviation for (function foo)
by the reader.
In CL, there are several different namespaces, #'foo
or (function foo)
will return the functional value of foo
.
You may want to search for "Lisp-1 vs. Lisp-2", check other Stackoverflow questions, or read an old article by Pitman and Gabriel in order to learn more about the concept of multiple namespaces (also called slots or cells of symbols).
The reason that, in the case of lambda, the #'
may be omitted in CL is that it is a macro, which expands thusly (taken from the Hyperspec):
(lambda lambda-list [[declaration* | documentation]] form*) == (function (lambda lambda-list [[declaration* | documentation]] form*)) == #'(lambda lambda-list [[declaration* | documentation]] form*)
#'
may still be used for historic reasons (I think that in Maclisp lambda
s didn't expand to the function form), or because some people think, that tagging lambdas with sharpquotes may make the code more readable or coherent. There may be some special cases in which this makes a difference, but in general, it doesn't really matter which form you choose.
I guess you can think of it like this: (function (lambda ...))
returns the function (lambda ...)
creates. Note that lambda
in the CL Hyperspec has both a macro AND a symbol entry. From the latter:
A lambda expression is a list that can be used in place of a function name in certain contexts to denote a function by directly describing its behavior rather than indirectly by referring to the name of an established function.
From the documentation of function
:
If name is a lambda expression, then a lexical closure is returned.
I think the difference is also related to calling lambda forms like this: ((lambda ...) ...)
where it is treated as a form to be evaluated, vs. (funcall #'(lambda ...) ...)
. If you want to read more on the topic, there is a c.l.l thread about it.
Some quotes from that thread:
(lambda (x) ...
by itself is just some unquoted list structure. It is its appearance as an argument to the FUNCTION special form(function (lambda (x) ...
that causes the function object to exist
and:
It's also compounded by the fact that the LAMBDA macro was a rather late addition the ANSI Common Lisp, so all of the really old guys (i.e., like me) learned their lisp when you needed to supply the #' to the lambda expression in the mapping functions. Otherwise the non-existent lambda function would be invoked.
The macro addition changed that, but some of us are too set in our ways to want to change.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With