This commit is contained in:
Christophe Grand 2017-01-09 16:41:24 +01:00
parent 320668e7b5
commit 6d2d448e34
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ They generally only make sense in the context of a higher-order transducer.
* 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`, `sd`, `min`, `minimum`, `max`, `maximum`, `str`
* 1-item ones: `reduce`, `into`, `transjuxt`, `last`, `count`, `avg`, `sd`, `min`, `minimum`, `max`, `maximum`, `str`
*Reducing functions* (in `net.cgrand.xforms.rfs`): `min`, `minimum`, `max`, `maximum`, `str`, `str!`, `avg`, `sd`, `juxt` and `last`.
@ -21,7 +21,7 @@ Transducing contexts: `transjuxt` (for performing several transductions in a sin
Add this dependency to your project:
```clj
[net.cgrand/xforms "0.8.0"]
[net.cgrand/xforms "0.8.1"]
```
```clj

View file

@ -1,4 +1,4 @@
(defproject net.cgrand/xforms "0.8.0"
(defproject net.cgrand/xforms "0.8.1"
:description "Extra transducers for Clojure"
:url "https://github.com/cgrand/xforms"
:license {:name "Eclipse Public License"