mirror of
https://github.com/fiddlerwoaroof/data-lens.git
synced 2025-11-08 10:16:32 +00:00
feat: add collecting transducer to accumulate partial sums
This commit is contained in:
20
package.lisp
20
package.lisp
@ -22,11 +22,7 @@
|
||||
|
||||
(defpackage :data-lens.transducers.internals
|
||||
(:use :cl)
|
||||
(:export
|
||||
#:unwrap
|
||||
#:init
|
||||
#:reduce-generic
|
||||
#:stepper))
|
||||
(:export #:unwrap #:init #:reduce-generic #:stepper))
|
||||
|
||||
(defpackage :data-lens.transducers
|
||||
(:use :cl)
|
||||
@ -35,13 +31,7 @@
|
||||
(:export #:mapping :filtering :deduping :catting :splitting
|
||||
#:exit-early :taking :dropping :transduce
|
||||
#:hash-table-builder :vector-builder :list-builder
|
||||
#:mv-mapping
|
||||
#:mv-selecting
|
||||
#:hash-table-select
|
||||
#:mv-filtering
|
||||
#:lazy-sequence
|
||||
#:compressing-runs
|
||||
#:mapcatting
|
||||
#:iota
|
||||
#:repeating
|
||||
#:repeating*))
|
||||
#:collecting #:mv-mapping #:mv-selecting
|
||||
#:hash-table-select #:mv-filtering #:mapcatting
|
||||
#:lazy-sequence #:compressing-runs #:iota
|
||||
#:repeating #:repeating*))
|
||||
|
||||
Reference in New Issue
Block a user