Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
inline nil?
  • Loading branch information
richhickey committed Dec 4, 2010
1 parent 605944b commit eb076da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/clj/clojure/core.clj
Expand Up @@ -398,7 +398,8 @@
"Returns true if x is nil, false otherwise."
{:tag Boolean
:added "1.0"
:static true}
:static true
:inline (fn [x] (list 'clojure.lang.Util/identical x nil))}
[x] (clojure.lang.Util/identical x nil))

(def
Expand Down

0 comments on commit eb076da

Please sign in to comment.