Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@ksm2 ksm2 released this 28 Nov 14:37
· 1 commit to main since this release

Initial Release

Operators

  • every - Determines whether every chunk of the stream fulfills a given predicate.
  • filter - Filters chunks emitted by the stream using a predicate.
  • map - Maps each chunk emitted by the stream to another type using a callback.
  • reduce - Aggregates a stream to a value emitting the result when the stream closes.
  • reduce1 - Aggregates a stream to a value emitting the result when the stream closes.
  • scan - Aggregates a stream to a value emitting the intermediate result with each chunk.
  • scan1 - Aggregates a stream to a value emitting the intermediate result with each chunk.
  • some - Determines whether some chunks of the stream fulfill a given predicate.