diff --git a/MoreLinq/Batch.cs b/MoreLinq/Batch.cs index 4c3102dd2..34babc628 100644 --- a/MoreLinq/Batch.cs +++ b/MoreLinq/Batch.cs @@ -62,6 +62,7 @@ public static IEnumerable> Batch(this IEnumerable< /// Size of buckets. /// The projection to apply to each bucket. /// A sequence of projections on equally sized buckets containing elements of the source collection. + /// /// /// This operator uses deferred execution and streams its results /// (buckets are streamed but their content buffered). @@ -77,6 +78,7 @@ public static IEnumerable> Batch(this IEnumerable< /// hoping for a single bucket, then it can lead to memory exhaustion /// (). /// + /// public static IEnumerable Batch(this IEnumerable source, int size, Func, TResult> resultSelector) diff --git a/MoreLinq/Extensions.g.cs b/MoreLinq/Extensions.g.cs index e1245aa54..00add5531 100644 --- a/MoreLinq/Extensions.g.cs +++ b/MoreLinq/Extensions.g.cs @@ -690,6 +690,7 @@ public static IEnumerable> Batch(this IEnumerable< /// Size of buckets. /// The projection to apply to each bucket. /// A sequence of projections on equally sized buckets containing elements of the source collection. + /// /// /// This operator uses deferred execution and streams its results /// (buckets are streamed but their content buffered). @@ -705,6 +706,7 @@ public static IEnumerable> Batch(this IEnumerable< /// hoping for a single bucket, then it can lead to memory exhaustion /// (). /// + /// public static IEnumerable Batch(this IEnumerable source, int size, Func, TResult> resultSelector)