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
CycleRange returns an IBuffer which brings with it the need to dispose the result which is not very practical.
I think we should add an overload for readonly lists that returns a regular old IEnumerable (that's easy because the list is already materialized).
We can either add an overload of the existing CycleRange (that's a source breaking change though).
Alternatively we can use a new name (e.g. CycleList).
The text was updated successfully, but these errors were encountered:
CycleRange
returns anIBuffer
which brings with it the need to dispose the result which is not very practical.I think we should add an overload for readonly lists that returns a regular old
IEnumerable
(that's easy because the list is already materialized).We can either add an overload of the existing
CycleRange
(that's a source breaking change though).Alternatively we can use a new name (e.g.
CycleList
).The text was updated successfully, but these errors were encountered: