|
393 | 393 | </Parameter>
|
394 | 394 | </Parameters>
|
395 | 395 | <Docs>
|
396 |
| - <typeparam name="TSource">To be added.</typeparam> |
397 |
| - <typeparam name="TKey">To be added.</typeparam> |
398 |
| - <typeparam name="TAccumulate">To be added.</typeparam> |
399 |
| - <param name="source">To be added.</param> |
400 |
| - <param name="keySelector">To be added.</param> |
401 |
| - <param name="seedSelector">To be added.</param> |
402 |
| - <param name="func">To be added.</param> |
403 |
| - <param name="keyComparer">To be added.</param> |
404 |
| - <summary>To be added.</summary> |
405 |
| - <returns>To be added.</returns> |
406 |
| - <remarks>To be added.</remarks> |
| 396 | + <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam> |
| 397 | + <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam> |
| 398 | + <typeparam name="TAccumulate">The type of the accumulator value.</typeparam> |
| 399 | + <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> to aggregate over.</param> |
| 400 | + <param name="keySelector">A function to extract the key for each element.</param> |
| 401 | + <param name="seedSelector">A factory for the initial accumulator value.</param> |
| 402 | + <param name="func">An accumulator function to be invoked on each element.</param> |
| 403 | + <param name="keyComparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys with.</param> |
| 404 | + <summary>Applies an accumulator function over a sequence, grouping results by key.</summary> |
| 405 | + <returns>An enumerable containing the aggregates corresponding to each key deriving from <paramref name="source" />.</returns> |
| 406 | + <remarks> |
| 407 | + This method is comparable to the <see cref="M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})" /> methods where each grouping is being aggregated into a single value as opposed to allocating a collection for each group. |
| 408 | + </remarks> |
407 | 409 | </Docs>
|
408 | 410 | </Member>
|
409 | 411 | <Member MemberName="AggregateBy<TSource,TKey,TAccumulate>">
|
|
466 | 468 | </Parameter>
|
467 | 469 | </Parameters>
|
468 | 470 | <Docs>
|
469 |
| - <typeparam name="TSource">To be added.</typeparam> |
470 |
| - <typeparam name="TKey">To be added.</typeparam> |
471 |
| - <typeparam name="TAccumulate">To be added.</typeparam> |
472 |
| - <param name="source">To be added.</param> |
473 |
| - <param name="keySelector">To be added.</param> |
474 |
| - <param name="seed">To be added.</param> |
475 |
| - <param name="func">To be added.</param> |
476 |
| - <param name="keyComparer">To be added.</param> |
477 |
| - <summary>To be added.</summary> |
478 |
| - <returns>To be added.</returns> |
479 |
| - <remarks>To be added.</remarks> |
| 471 | + <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam> |
| 472 | + <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam> |
| 473 | + <typeparam name="TAccumulate">The type of the accumulator value.</typeparam> |
| 474 | + <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> to aggregate over.</param> |
| 475 | + <param name="keySelector">A function to extract the key for each element.</param> |
| 476 | + <param name="seed">The initial accumulator value.</param> |
| 477 | + <param name="func">An accumulator function to be invoked on each element.</param> |
| 478 | + <param name="keyComparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys with.</param> |
| 479 | + <summary>Applies an accumulator function over a sequence, grouping results by key.</summary> |
| 480 | + <returns>An enumerable containing the aggregates corresponding to each key deriving from <paramref name="source" />.</returns> |
| 481 | + <remarks> |
| 482 | + This method is comparable to the <see cref="M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})" /> methods where each grouping is being aggregated into a single value as opposed to allocating a collection for each group. |
| 483 | + </remarks> |
480 | 484 | </Docs>
|
481 | 485 | </Member>
|
482 | 486 | <Member MemberName="All<TSource>">
|
@@ -2893,13 +2897,13 @@ Each chunk except the last one will be of size `size`. The last chunk will conta
|
2893 | 2897 | </Parameter>
|
2894 | 2898 | </Parameters>
|
2895 | 2899 | <Docs>
|
2896 |
| - <typeparam name="TSource">To be added.</typeparam> |
2897 |
| - <typeparam name="TKey">To be added.</typeparam> |
2898 |
| - <param name="source">To be added.</param> |
2899 |
| - <param name="keySelector">To be added.</param> |
2900 |
| - <param name="keyComparer">To be added.</param> |
2901 |
| - <summary>To be added.</summary> |
2902 |
| - <returns>To be added.</returns> |
| 2900 | + <typeparam name="TSource">The type of elements of <paramref name="source" />.</typeparam> |
| 2901 | + <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam> |
| 2902 | + <param name="source">A sequence that contains elements to be counted.</param> |
| 2903 | + <param name="keySelector">A function to extract the key for each element.</param> |
| 2904 | + <param name="keyComparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys with.</param> |
| 2905 | + <summary>Returns the count of elements in the source sequence grouped by key.</summary> |
| 2906 | + <returns>An enumerable containing the frequencies of each key occurrence in <paramref name="source" />.</returns> |
2903 | 2907 | <remarks>To be added.</remarks>
|
2904 | 2908 | </Docs>
|
2905 | 2909 | </Member>
|
@@ -5677,7 +5681,7 @@ Only unique elements are returned.
|
5677 | 5681 | <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
|
5678 | 5682 | <param name="source">The source enumerable providing the elements.</param>
|
5679 | 5683 | <summary>Returns an enumerable that incorporates the element's index into a tuple.</summary>
|
5680 |
| - <returns>To be added.</returns> |
| 5684 | + <returns>An enumerable that incorporates each element index into a tuple.</returns> |
5681 | 5685 | <remarks>To be added.</remarks>
|
5682 | 5686 | <exception cref="T:System.ArgumentNullException">
|
5683 | 5687 | <paramref name="source" /> is <see langword="null" />.</exception>
|
|
0 commit comments