Skip to content

v16.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 24 Oct 15:03
· 162 commits to main since this release
6254e7e

16.0.0 (2020-10-24)

Bug Fixes

  • iterables: iterables are non-stateful (6738618)

Features

  • iterable: remove support for find as larix no longer supports it (f641e2f)

BREAKING CHANGES

  • iterables: iterables were stateful and one could only iterate over them once, refferential transparency could not be guaranteed and extra care had to be taken, caching their items using [...iterable]. Now iterables are not stateful anymore and can be reused and iterated over multiple times.
  • iterable: find has been removed in favour of using filter.