In Common Lisp, if I wanted to check whether a list was not null, I could simply use the list itself as the condition, since all non-nil lists are considered as true. However, I find that in Scheme, doing the same will make Scheme think that I am trying to call a function. Is there a better way to check whether or not a list is null in Scheme than to define another function that does (not (null? x))?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
| show 2 more comments |
|
In Scheme, everything that's not Thus,
Using
|
|||
|
|
|
If you know that it's a list, you can use |
|||
|
|
(1 2 3)vs'(1 2 3)with the latter being correct. empty lists also need to be quoted, iow'(). – leppie Sep 9 '11 at 11:13