Skip to content

Reducing stream without intermediate collections #4

@raine

Description

@raine

I'd like to find a simple way to fold a stream into a single value.

Currently the only way to do that is by having an intermediate list:

$ echo 1 2 3 4 5 | R --slurp sum
15

Transducers (and transduce-stream) offer a way to map and filter a stream without creating an intermediate collections, but they don't seem like a solution in this case. It would probably require some kind of reducing transformer just before transduce-stream pushes values to the next stream. Reducing transformer seems unorthodox because normally you'd just use a reduce iterator with transduce.

Investigate possibility of parameterizing a custom reduce stream.

Along the lines of but something nicer than:

$ echo  | R inc --reduce-fn 'add' --reduce-acc '0'
20

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions