You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.