aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--seq-utils.clj3
1 files changed, 2 insertions, 1 deletions
diff --git a/seq-utils.clj b/seq-utils.clj
index 1a1e5d5b..7d0bb6da 100644
--- a/seq-utils.clj
+++ b/seq-utils.clj
@@ -27,7 +27,8 @@
(defn batch
"Returns a sequence of sequences, each containing 'size' elements
- from s."
+ from s. DEPRECATED in favor of clojure/partition, added to boot.clj
+ in r865."
[size s]
(when s
(lazy-cons (take size s) (batch size (drop size s)))))