In Common Lisp you use the (null x) function to check for empty lists and nil values.
Most logically this maps to
(or (nil? x) (= '() x))
In clojure. Can someone suggest a more idiomatic way to do it in Clojure?
|
In Common Lisp you use the (null x) function to check for empty lists and nil values. Most logically this maps to
In clojure. Can someone suggest a more idiomatic way to do it in Clojure? |
||||
|
To get the same result for an empty list in Clojure as you do in Common Lisp, use the It is also a predicate, and suffixed with a
As j-g faustus already noted, |
|||||||||||
|
From clojure.org lazy It works because And since |
|||
|
|
NILand()(the empty list) are one and the same thing. Your code snippet is a pleonasm. – Svante Jul 13 '10 at 13:52(= '() nil) => false. In other Lisps, this is true. – Isaac Jul 13 '10 at 14:00