From 568f9fe39d5a73224fbd685857feab5fea00b20b Mon Sep 17 00:00:00 2001 From: Martin Clausen Date: Fri, 28 Apr 2017 13:25:00 +0200 Subject: [PATCH] Clarification regarding use of 1-item transducers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e49401b..982806b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ More transducers and reducing functions for Clojure(script)! *Transducers* (in `net.cgrand.xforms`) can be classified in three groups: regular ones, higher-order ones (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. +1-item transducers generally only make sense in the context of a higher-order transducer. * regular ones: `partition` (1 arg), `reductions`, `for`, `take-last`, `drop-last`, `window` and `window-by-time` * higher-order ones: `by-key`, `multiplex`, `transjuxt`, `partition` (2+ args)