summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2009-05-29 17:37:49 +0000
committerRich Hickey <richhickey@gmail.com>2009-05-29 17:37:49 +0000
commita9cb831fe714966e225a5297ef844513fe4a373a (patch)
tree1435da88316270a78f0155abcd4d2123be2695a8
parent902a54421b8d2372587d2d9a34abb803624a4911 (diff)
backed out count inlining
-rw-r--r--src/clj/clojure/core.clj2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj
index ab80af3d..da282d35 100644
--- a/src/clj/clojure/core.clj
+++ b/src/clj/clojure/core.clj
@@ -849,8 +849,6 @@
(defn count
"Returns the number of items in the collection. (count nil) returns
0. Also works on strings, arrays, and Java Collections and Maps"
- {:tag Integer
- :inline (fn [x] `(. clojure.lang.RT (count ~x)))}
[coll] (. clojure.lang.RT (count coll)))
;;list stuff