From cb97533e3e8a4f325101c3dd2c56c6ee68e2e555 Mon Sep 17 00:00:00 2001 From: Christophe Grand Date: Sat, 3 Dec 2016 10:14:04 -0600 Subject: [PATCH] explain x/for without placeholder behavior --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 66ac069..f15a899 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,8 @@ Add this dependency to your project: Execution time mean : 373,814060 µs ``` +You can also use `for` like `clojure.core/for`: `(x/for [i (range 128) j (range i)] (* i j))` expands to `(eduction (x/for [i % j (range i)] (* i j)) (range 128))`. + `by-key` and `reduce` are two new transducers. Here is an example usage: ```clj