xforms/README.md

52 lines
1.1 KiB
Markdown
Raw Normal View History

2015-09-03 10:39:22 +00:00
# xforms
2015-09-03 11:00:46 +00:00
More transducers and reducing functions for Clojure!
2015-09-03 10:39:22 +00:00
## Usage
2015-09-03 10:59:23 +00:00
Add this dependency to your project:
```clj
[net.cgrand/xforms "0.1.0-SNAPSHOT"]
```
2015-09-03 10:39:22 +00:00
```clj
=> (require '[net.cgrand.xforms :as x])
```
`str` and `str!` are two reducing functions to build Strings and StringBuilders in linear time.
```clj
=> (quick-bench (reduce str (range 256)))
Execution time mean : 58,714946 µs
=> (quick-bench (reduce x/str (range 256)))
Execution time mean : 11,609631 µs
```
`by-key` and `reduce` are two new transducers. Here is an example usage:
```clj
;; reimplementing group-by
(defn my-group-by [kfn coll]
2015-09-03 10:42:12 +00:00
(into {} (x/by-key kfn (x/reduce conj)) coll))
2015-09-03 10:39:22 +00:00
;; let's go transient!
(defn my-group-by [kfn coll]
2015-09-03 10:42:12 +00:00
(into {} (x/by-key kfn (x/reduce (completing conj! persistent!))) coll))
2015-09-03 10:39:22 +00:00
=> (quick-bench (group-by odd? (range 256)))
Execution time mean : 29,356531 µs
=> (quick-bench (my-group-by odd? (range 256)))
Execution time mean : 20,604297 µs
```
## License
Copyright © 2015 Christophe Grand
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.