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
Since batches are about splitting an IEnumerable into fixed sizes, every batch
should know how many items it has, in addition to the original order of the
source enumerable. Size + order preservation = IList.
This should break little (if any) existing code, because IList inherits
IEnumerable. Asides from the signature, the only code change that needs to be
made is for the underlying bucket store to be a List instead of an Array (which
is the more LINQy approach anyways).
Original issue reported on code.google.com by a...@milyli.com on 9 Mar 2015 at 2:19
The text was updated successfully, but these errors were encountered:
This issue has been migrated to:
https://github.com/MoreLINQ/morelinq/issues/98
The conversation continues there.
DO NOT post any further comments to the issue tracker on Google Code as it is
shutting down.
You can also just subscribe to the issue on GitHub to receive notifications of
any further development.
Original comment by azizatif on 21 Aug 2015 at 6:56
Original issue reported on code.google.com by
a...@milyli.com
on 9 Mar 2015 at 2:19The text was updated successfully, but these errors were encountered: