diff options
-rw-r--r-- | src/boot.clj | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/boot.clj b/src/boot.clj index cea9fcc3..d40d4699 100644 --- a/src/boot.clj +++ b/src/boot.clj @@ -186,6 +186,14 @@ (defn identity [x] x) +;;Collection stuff + +(defn seq [coll] + (. RT (seq coll))) + +(defn count [coll] + (. RT (count coll))) + ;;map stuff (defn contains [coll key] |