Skip to content

Range, arithmetic reducers, and effectors

Compare
Choose a tag to compare
@jajaperson jajaperson released this 03 Feb 15:56
· 60 commits to main since this release
81d42b5

Added

  • Effectors
    • iter.forEach() (like Array.prototype.forEach)
    • iter.lazyObserver() for observing each yielded value lazily.
  • Generators
    • iter.create.range() for creating an iterable over a range of numbers.
  • Reducers
    • iter.sum() for getting the sum of an iterable.
    • iter.product() for getting the product of an iterable.
    • iter.norm() for getting the vector norm of an iterable.