Version 0.1.0
This commit is contained in:
parent
c50e46e970
commit
560f209914
2 changed files with 5 additions and 3 deletions
|
|
@ -6,14 +6,16 @@ More transducers and reducing functions for Clojure!
|
||||||
|
|
||||||
Transducers: `reduce`, `into`, `by-key`, `partition`, `pad`, `for` and `window`.
|
Transducers: `reduce`, `into`, `by-key`, `partition`, `pad`, `for` and `window`.
|
||||||
|
|
||||||
Reducing functions: `str`, `str!`, `avg`, `count`, `juxt`, `juxt-map`.
|
Reducing functions: `str`, `str!`, `avg`, `count`, `juxt`, `juxt-map` and `first`.
|
||||||
|
|
||||||
|
Transducing context: `transjuxt` (for performing several transductions in a single pass).
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Add this dependency to your project:
|
Add this dependency to your project:
|
||||||
|
|
||||||
```clj
|
```clj
|
||||||
[net.cgrand/xforms "0.1.0-SNAPSHOT"]
|
[net.cgrand/xforms "0.1.0"]
|
||||||
```
|
```
|
||||||
|
|
||||||
```clj
|
```clj
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject net.cgrand/xforms "0.1.0-SNAPSHOT"
|
(defproject net.cgrand/xforms "0.1.0"
|
||||||
:description "Extra transducers for Clojure"
|
:description "Extra transducers for Clojure"
|
||||||
#_#_:url "http://example.com/FIXME"
|
#_#_:url "http://example.com/FIXME"
|
||||||
:license {:name "Eclipse Public License"
|
:license {:name "Eclipse Public License"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue