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
Some iteratees in ListLike recalculate the length of stream (e.g. for guards and in the continuation). At least 'drop' 'dropWhile' and 'group' are affected. This can be costly with large chunks if 'LL.length' isn't O(1) (e.g. for lists). Share it, and check for other similar cases.
The text was updated successfully, but these errors were encountered:
Some iteratees in ListLike recalculate the length of stream (e.g. for guards and in the continuation). At least 'drop' 'dropWhile' and 'group' are affected. This can be costly with large chunks if 'LL.length' isn't O(1) (e.g. for lists). Share it, and check for other similar cases.
The text was updated successfully, but these errors were encountered: