From 62c3dd15ccc6c29279271a00954ab7e88c526271 Mon Sep 17 00:00:00 2001 From: Christophe Grand Date: Mon, 5 Dec 2016 11:37:04 +0100 Subject: [PATCH] doculent that `partition` is high-order too --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f15a899..e911630 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ More transducers and reducing functions for Clojure! (which accept other transducers as arguments) and 1-item ones which emit only 1 item out no matter how many went in. They generally only make sense in the context of a higher-order transducer. - * regular ones: `partition`, `reductions`, `for`, `window` and `window-by-time` - * higher-order ones: `by-key`, `multiplex`, `transjuxt` + * regular ones: `partition` (1 arg), `reductions`, `for`, `window` and `window-by-time` + * higher-order ones: `by-key`, `multiplex`, `transjuxt`, `partition` (2+ args) * 1-item ones: `reduce`, `into`, `last`, `count`, `avg`, `min`, `minimum`, `max`, `maximum`, `str` *Reducing functions* (in `net.cgrand.xforms.rfs`): `min`, `minimum`, `max`, `maximum`, `str`, `str!`, `avg`, `juxt` and `last`.