Skip to content

Commit

Permalink
Updated README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
JeevanJames committed Jan 19, 2019
1 parent 226e139 commit 96446ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Extension methods for common collection interfaces like `IEnumerable<T>`, `IColl
|`Repeat`|`IEnumerable<T>`|Creates a collection that contains the specified collection repeated a specified number of times.|
|`Shuffle`|`IEnumerable<T>`|Returns a shuffled collection from a given collection.|
|`ShuffleInplace`|`IList<T>`|Shuffles the elements of a collection.|
|`SlidingChunk`|`IList<T>`|Returns overlapping chunks of elements of the specified size from a collection.|
|`ToArray`|`IEnumerable<T>`|Creates an array from a collection. Overloads available to select the elements from the collection to be included in the array based on a predicate, and to convert the elements to a different type.|
|`ToList`|`IEnumerable<T>`|Creates a `List<T>` from a collection. Overloads available to select the elements from the collection to be included in the array based on a predicate, and to convert the elements to a different type.|
|`WhereNot`|`IEnumerable<T>`|Filters a collection on the values that do not match the specified predicate. Inverse of the LINQ `Where` method.|
Expand Down

0 comments on commit 96446ae

Please sign in to comment.