Click or drag to resize

MoreEnumerable Class

Provides a set of static methods for querying objects that implement IEnumerable<T>. The actual methods are implemented in files reflecting the method name.
Inheritance Hierarchy
System.Object
  MoreLinq.MoreEnumerable

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 2.6.0
Syntax
public static class MoreEnumerable

The MoreEnumerable type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAcquire<TSource>
Ensures that a source sequence of IDisposable objects are all acquired successfully. If the acquisition of any one IDisposable fails then those successfully acquired till that point are disposed.
Public methodStatic memberCode exampleAggregateRight<TSource>(IEnumerable<TSource>, Func<TSource, TSource, TSource>)
Public methodStatic memberCode exampleAggregateRight<TSource, TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TSource, TAccumulate, TAccumulate>)
Public methodStatic memberCode exampleAggregateRight<TSource, TAccumulate, TResult>(IEnumerable<TSource>, TAccumulate, Func<TSource, TAccumulate, TAccumulate>, Func<TAccumulate, TResult>)
Public methodStatic memberAssert<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>)
Asserts that all elements of a sequence meet a given condition otherwise throws an Exception object.
Public methodStatic memberAssert<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>, Func<TSource, Exception>)
Asserts that all elements of a sequence meet a given condition otherwise throws an Exception object.
Public methodStatic memberAssertCount<TSource>(IEnumerable<TSource>, Int32)
Asserts that a source sequence contains a given count of elements.
Public methodStatic memberAssertCount<TSource>(IEnumerable<TSource>, Int32, Func<Int32, Int32, Exception>)
Asserts that a source sequence contains a given count of elements. A parameter specifies the exception to be thrown.
Public methodStatic memberCode exampleAtLeast<T>
Determines whether or not the number of elements in the sequence is greater than or equal to the given integer.
Public methodStatic memberCode exampleAtMost<T>
Determines whether or not the number of elements in the sequence is lesser than or equal to the given integer.
Public methodStatic memberBatch<TSource>(IEnumerable<TSource>, Int32)
Batches the source sequence into sized buckets.
Public methodStatic memberBatch<TSource, TResult>(IEnumerable<TSource>, Int32, Func<IEnumerable<TSource>, TResult>)
Batches the source sequence into sized buckets and applies a projection to each bucket.
Public methodStatic memberCartesian<TFirst, TSecond, TResult>
Returns the Cartesian product of two sequences by combining each element of the first set with each in the second and applying the user=define projection to the pair.
Public methodStatic memberConcat<T>(IEnumerable<T>, T)
Returns a sequence consisting of the head elements and the given tail element.
Public methodStatic memberConcat<T>(T, IEnumerable<T>)
Returns a sequence consisting of the head element and the given tail elements.
Public methodStatic memberConsume<T>
Completely consumes the given sequence. This method uses immediate execution, and doesn't store any data during execution.
Public methodStatic memberCode exampleCountBetween<T>
Determines whether or not the number of elements in the sequence is between an inclusive range of minimum and maximum integers.
Public methodStatic memberCountBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)
Applies a key-generating function to each element of a sequence and returns a sequence of unique keys and their number of occurrences in the original sequence.
Public methodStatic memberCountBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)
Applies a key-generating function to each element of a sequence and returns a sequence of unique keys and their number of occurrences in the original sequence. An additional argument specifies a comparer to use for testing equivalence of keys.
Public methodStatic memberDistinctBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)
Returns all distinct elements of the given source, where "distinctness" is determined via a projection and the default equality comparer for the projected type.
Public methodStatic memberDistinctBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)
Returns all distinct elements of the given source, where "distinctness" is determined via a projection and the specified comparer for the projected type.
Public methodStatic memberEndsWith<T>(IEnumerable<T>, IEnumerable<T>)
Determines whether the end of the first sequence is equivalent to the second sequence, using the default equality comparer.
Public methodStatic memberEndsWith<T>(IEnumerable<T>, IEnumerable<T>, IEqualityComparer<T>)
Determines whether the end of the first sequence is equivalent to the second sequence, using the specified element equality comparer.
Public methodStatic memberCode exampleEquiZip<TFirst, TSecond, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TSecond, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleEquiZip<T1, T2, T3, TResult>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, Func<T1, T2, T3, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleEquiZip<T1, T2, T3, T4, TResult>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerable<T4>, Func<T1, T2, T3, T4, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleExactly<T>
Determines whether or not the number of elements in the sequence is equals to the given integer.
Public methodStatic memberExceptBy<TSource, TKey>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>)
Returns the set of elements in the first sequence which aren't in the second sequence, according to a given key selector.
Public methodStatic memberExceptBy<TSource, TKey>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)
Returns the set of elements in the first sequence which aren't in the second sequence, according to a given key selector.
Public methodStatic memberExclude<T>
Excludes a contiguous number of elements from a sequence starting at a given index.
Public methodStatic memberFallbackIfEmpty<T>(IEnumerable<T>, IEnumerable<T>)
Returns the elements of a sequence, but if it is empty then returns an altenate sequence of values.
Public methodStatic memberCode exampleFallbackIfEmpty<T>(IEnumerable<T>, T)
Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty.
Public methodStatic memberFallbackIfEmpty<T>(IEnumerable<T>,T[])
Returns the elements of a sequence, but if it is empty then returns an altenate sequence from an array of values.
Public methodStatic memberFallbackIfEmpty<T>(IEnumerable<T>, T, T)
Returns the elements of a sequence, but if it is empty then returns an altenate sequence of values.
Public methodStatic memberFallbackIfEmpty<T>(IEnumerable<T>, T, T, T)
Returns the elements of a sequence, but if it is empty then returns an altenate sequence of values.
Public methodStatic memberFallbackIfEmpty<T>(IEnumerable<T>, T, T, T, T)
Returns the elements of a sequence, but if it is empty then returns an altenate sequence of values.
Public methodStatic memberFillBackward<T>(IEnumerable<T>)
Returns a sequence with each null reference or value in the source replaced with the following non-null reference or value in that sequence.
Public methodStatic memberFillBackward<T>(IEnumerable<T>, Func<T, Boolean>)
Returns a sequence with each missing element in the source replaced with the following non-missing element in that sequence. An additional parameter specifies a function used to determine if an element is considered missing or not.
Public methodStatic memberFillBackward<T>(IEnumerable<T>, Func<T, Boolean>, Func<T, T, T>)
Returns a sequence with each missing element in the source replaced with the following non-missing element in that sequence. Additional parameters specifiy two functions, one used to determine if an element is considered missing or not and another to provide the replacement for the missing element.
Public methodStatic memberFillForward<T>(IEnumerable<T>)
Returns a sequence with each null reference or value in the source replaced with the previous non-null reference or value seen in that sequence.
Public methodStatic memberFillForward<T>(IEnumerable<T>, Func<T, Boolean>)
Returns a sequence with each missing element in the source replaced with the previous non-missing element seen in that sequence. An additional parameter specifies a function used to determine if an element is considered missing or not.
Public methodStatic memberFillForward<T>(IEnumerable<T>, Func<T, Boolean>, Func<T, T, T>)
Returns a sequence with each missing element in the source replaced with one based on the previous non-missing element seen in that sequence. Additional parameters specifiy two functions, one used to determine if an element is considered missing or not and another to provide the replacement for the missing element.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 9 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 10 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 11 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 12 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 13 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 14 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 15 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 16 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, TResult>)
Returns the result of applying a function to a sequence of 1 element.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, TResult>)
Returns the result of applying a function to a sequence of 2 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, TResult>)
Returns the result of applying a function to a sequence of 3 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 4 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 5 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 6 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 7 elements.
Public methodStatic memberFold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, TResult>)
Returns the result of applying a function to a sequence of 8 elements.
Public methodStatic memberForEach<T>(IEnumerable<T>, Action<T>)
Immediately executes the given action on each element in the source sequence.
Public methodStatic memberForEach<T>(IEnumerable<T>, Action<T, Int32>)
Immediately executes the given action on each element in the source sequence. Each element's index is used in the logic of the action.
Public methodStatic memberFullGroupJoin<TFirst, TSecond, TKey>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>)
Performs a Full Group Join between the first and second sequences.
Public methodStatic memberFullGroupJoin<TFirst, TSecond, TKey>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, IEqualityComparer<TKey>)
Performs a Full Group Join between the first and second sequences.
Public methodStatic memberFullGroupJoin<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TKey, IEnumerable<TFirst>, IEnumerable<TSecond>, TResult>)
Performs a full group-join between two sequences.
Public methodStatic memberFullGroupJoin<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TKey, IEnumerable<TFirst>, IEnumerable<TSecond>, TResult>, IEqualityComparer<TKey>)
Performs a full group-join between two sequences.
Public methodStatic memberCode exampleGenerate<TResult>
Returns a sequence of values consecutively generated by a generator function.
Public methodStatic memberGenerateByIndex<TResult>
Returns a sequence of values based on indexes.
Public methodStatic memberGroupAdjacent<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)
Groups the adjacent elements of a sequence according to a specified key selector function.
Public methodStatic memberGroupAdjacent<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)
Groups the adjacent elements of a sequence according to a specified key selector function and compares the keys by using a specified comparer.
Public methodStatic memberGroupAdjacent<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>)
Groups the adjacent elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function.
Public methodStatic memberGroupAdjacent<TSource, TKey, TResult>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>, TResult>)
Groups the adjacent elements of a sequence according to a specified key selector function. The keys are compared by using a comparer and each group's elements are projected by using a specified function.
Public methodStatic memberGroupAdjacent<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>)
Groups the adjacent elements of a sequence according to a specified key selector function. The keys are compared by using a comparer and each group's elements are projected by using a specified function.
Public methodStatic memberGroupAdjacent<TSource, TKey, TResult>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>, TResult>, IEqualityComparer<TKey>)
Groups the adjacent elements of a sequence according to a specified key selector function. The keys are compared by using a comparer and each group's elements are projected by using a specified function.
Public methodStatic memberIncremental<TSource, TResult>(IEnumerable<TSource>, Func<TSource, TSource, TResult>) Obsolete.
Computes an incremental value between every adjacent element in a sequence: {N,N+1}, {N+1,N+2}, ...
Public methodStatic memberIncremental<TSource, TResult>(IEnumerable<TSource>, Func<TSource, TSource, Int32, TResult>) Obsolete.
Computes an incremental value between every adjacent element in a sequence: {N,N+1}, {N+1,N+2}, ...
Public methodStatic memberIndex<TSource>(IEnumerable<TSource>)
Public methodStatic memberIndex<TSource>(IEnumerable<TSource>, Int32)
Returns a sequence of KeyValuePair< TKey, TValue> where the key is the index of the value in the source sequence. An additional parameter specifies the starting index.
Public methodStatic memberInterleave<T>
Interleaves the elements of two or more sequences into a single sequence, skipping sequences as they are consumed
Public methodStatic memberLag<TSource, TResult>(IEnumerable<TSource>, Int32, Func<TSource, TSource, TResult>)
Produces a projection of a sequence by evaluating pairs of elements separated by a negative offset.
Public methodStatic memberLag<TSource, TResult>(IEnumerable<TSource>, Int32, TSource, Func<TSource, TSource, TResult>)
Produces a projection of a sequence by evaluating pairs of elements separated by a negative offset.
Public methodStatic memberLead<TSource, TResult>(IEnumerable<TSource>, Int32, Func<TSource, TSource, TResult>)
Produces a projection of a sequence by evaluating pairs of elements separated by a positive offset.
Public methodStatic memberLead<TSource, TResult>(IEnumerable<TSource>, Int32, TSource, Func<TSource, TSource, TResult>)
Produces a projection of a sequence by evaluating pairs of elements separated by a positive offset.
Public methodStatic memberMaxBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)
Returns the maximal element of the given sequence, based on the given projection.
Public methodStatic memberMaxBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)
Returns the maximal element of the given sequence, based on the given projection and the specified comparer for projected values.
Public methodStatic memberMinBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)
Returns the minimal element of the given sequence, based on the given projection.
Public methodStatic memberMinBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)
Returns the minimal element of the given sequence, based on the given projection and the specified comparer for projected values.
Public methodStatic memberNestedLoops
Produces a sequence from an action based on the dynamic generation of N nested loops whose iteration counts are defined by a sequence of loop counts.
Public methodStatic memberOrderBy<T, TKey>(IEnumerable<T>, Func<T, TKey>, OrderByDirection)
Sorts the elements of a sequence in a particular direction (ascending, descending) according to a key
Public methodStatic memberOrderBy<T, TKey>(IEnumerable<T>, Func<T, TKey>, IComparer<TKey>, OrderByDirection)
Sorts the elements of a sequence in a particular direction (ascending, descending) according to a key
Public methodStatic memberOrderedMerge<T>(IEnumerable<T>, IEnumerable<T>)
Merges two ordered sequences into one. Where the elements equal in both sequences, the element from the first sequence is returned in the resulting sequence.
Public methodStatic memberOrderedMerge<T>(IEnumerable<T>, IEnumerable<T>, IComparer<T>)
Merges two ordered sequences into one with an additional parameter specifying how to compare the elements of the sequences. Where the elements equal in both sequences, the element from the first sequence is returned in the resulting sequence.
Public methodStatic memberOrderedMerge<T, TKey>(IEnumerable<T>, IEnumerable<T>, Func<T, TKey>)
Merges two ordered sequences into one with an additional parameter specifying the element key by which the sequences are ordered. Where the keys equal in both sequences, the element from the first sequence is returned in the resulting sequence.
Public methodStatic memberOrderedMerge<T, TKey, TResult>(IEnumerable<T>, IEnumerable<T>, Func<T, TKey>, Func<T, TResult>, Func<T, TResult>, Func<T, T, TResult>)
Merges two ordered sequences into one. Additional parameters specify the element key by which the sequences are ordered, the result when element is found in first sequence but not in the second, the result when element is found in second sequence but not in the first and the result when elements are found in both sequences.
Public methodStatic memberOrderedMerge<T, TKey, TResult>(IEnumerable<T>, IEnumerable<T>, Func<T, TKey>, Func<T, TResult>, Func<T, TResult>, Func<T, T, TResult>, IComparer<TKey>)
Merges two ordered sequences into one. Additional parameters specify the element key by which the sequences are ordered, the result when element is found in first sequence but not in the second, the result when element is found in second sequence but not in the first, the result when elements are found in both sequences and a method for comparing keys.
Public methodStatic memberOrderedMerge<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TFirst, TResult>, Func<TSecond, TResult>, Func<TFirst, TSecond, TResult>)
Merges two heterogeneous sequences ordered by a common key type into a homogeneous one. Additional parameters specify the element key by which the sequences are ordered, the result when element is found in first sequence but not in the second and the result when element is found in second sequence but not in the first, the result when elements are found in both sequences.
Public methodStatic memberOrderedMerge<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TFirst, TResult>, Func<TSecond, TResult>, Func<TFirst, TSecond, TResult>, IComparer<TKey>)
Merges two heterogeneous sequences ordered by a common key type into a homogeneous one. Additional parameters specify the element key by which the sequences are ordered, the result when element is found in first sequence but not in the second, the result when element is found in second sequence but not in the first, the result when elements are found in both sequences and a method for comparing keys.
Public methodStatic memberCode examplePad<TSource>(IEnumerable<TSource>, Int32)
Pads a sequence with default values if it is narrower (shorter in length) than a given width.
Public methodStatic memberCode examplePad<TSource>(IEnumerable<TSource>, Int32, Func<Int32, TSource>)
Pads a sequence with a dynamic filler value if it is narrower (shorter in length) than a given width.
Public methodStatic memberCode examplePad<TSource>(IEnumerable<TSource>, Int32, TSource)
Pads a sequence with a given filler value if it is narrower (shorter in length) than a given width.
Public methodStatic memberCode examplePadStart<TSource>(IEnumerable<TSource>, Int32)
Pads a sequence with default values in the beginning if it is narrower (shorter in length) than a given width.
Public methodStatic memberCode examplePadStart<TSource>(IEnumerable<TSource>, Int32, Func<Int32, TSource>)
Pads a sequence with a dynamic filler value in the beginning if it is narrower (shorter in length) than a given width. An additional parameter specifies the function to calculate padding.
Public methodStatic memberCode examplePadStart<TSource>(IEnumerable<TSource>, Int32, TSource)
Pads a sequence with a given filler value in the beginning if it is narrower (shorter in length) than a given width. An additional parameter specifies the value to use for padding.
Public methodStatic memberCode examplePairwise<TSource, TResult>
Returns a sequence resulting from applying a function to each element in the source sequence and its predecessor, with the exception of the first element which is only returned as the predecessor of the second element.
Public methodStatic memberPartialSort<T>(IEnumerable<T>, Int32)
Public methodStatic memberPartialSort<T>(IEnumerable<T>, Int32, OrderByDirection)
Public methodStatic memberPartialSort<T>(IEnumerable<T>, Int32, IComparer<T>)
Public methodStatic memberPartialSort<T>(IEnumerable<T>, Int32, IComparer<T>, OrderByDirection)
Public methodStatic memberPartialSortBy<TSource, TKey>(IEnumerable<TSource>, Int32, Func<TSource, TKey>)
Public methodStatic memberPartialSortBy<TSource, TKey>(IEnumerable<TSource>, Int32, Func<TSource, TKey>, OrderByDirection)
Public methodStatic memberPartialSortBy<TSource, TKey>(IEnumerable<TSource>, Int32, Func<TSource, TKey>, IComparer<TKey>)
Public methodStatic memberPartialSortBy<TSource, TKey>(IEnumerable<TSource>, Int32, Func<TSource, TKey>, IComparer<TKey>, OrderByDirection)
Public methodStatic memberCode examplePartition<T>(IEnumerable<T>, Func<T, Boolean>)
Partitions or splits a sequence in two using a predicate.
Public methodStatic memberPartition<T, TResult>(IEnumerable<IGrouping<Boolean, T>>, Func<IEnumerable<T>, IEnumerable<T>, TResult>)
Partitions a grouping by Boolean keys into a projection of true elements and false elements, respectively.
Public methodStatic memberPartition<T, TResult>(IEnumerable<IGrouping<Nullable<Boolean>, T>>, Func<IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, TResult>)
Partitions a grouping by nullable Boolean keys into a projection of true elements, false elements and null elements, respectively.
Public methodStatic memberCode examplePartition<T, TResult>(IEnumerable<T>, Func<T, Boolean>, Func<IEnumerable<T>, IEnumerable<T>, TResult>)
Partitions or splits a sequence in two using a predicate and then projects a result from the two.
Public methodStatic memberPartition<TKey, TElement, TResult>(IEnumerable<IGrouping<TKey, TElement>>, TKey, Func<IEnumerable<TElement>, IEnumerable<IGrouping<TKey, TElement>>, TResult>)
Partitions a grouping and projects a result from group elements matching a key and those groups that do not.
Public methodStatic memberPartition<TKey, TElement, TResult>(IEnumerable<IGrouping<TKey, TElement>>, TKey, IEqualityComparer<TKey>, Func<IEnumerable<TElement>, IEnumerable<IGrouping<TKey, TElement>>, TResult>)
Partitions a grouping and projects a result from group elements matching a key and those groups that do not. An additional parameter specifies how to compare keys for equality.
Public methodStatic memberPartition<TKey, TElement, TResult>(IEnumerable<IGrouping<TKey, TElement>>, TKey, TKey, Func<IEnumerable<TElement>, IEnumerable<TElement>, IEnumerable<IGrouping<TKey, TElement>>, TResult>)
Partitions a grouping and projects a result from elements of groups matching a set of two keys and those groups that do not.
Public methodStatic memberPartition<TKey, TElement, TResult>(IEnumerable<IGrouping<TKey, TElement>>, TKey, TKey, IEqualityComparer<TKey>, Func<IEnumerable<TElement>, IEnumerable<TElement>, IEnumerable<IGrouping<TKey, TElement>>, TResult>)
Partitions a grouping and projects a result from elements of groups matching a set of two keys and those groups that do not. An additional parameter specifies how to compare keys for equality.
Public methodStatic memberPartition<TKey, TElement, TResult>(IEnumerable<IGrouping<TKey, TElement>>, TKey, TKey, TKey, Func<IEnumerable<TElement>, IEnumerable<TElement>, IEnumerable<TElement>, IEnumerable<IGrouping<TKey, TElement>>, TResult>)
Partitions a grouping and projects a result from elements groups matching a set of three keys and those groups that do not.
Public methodStatic memberPartition<TKey, TElement, TResult>(IEnumerable<IGrouping<TKey, TElement>>, TKey, TKey, TKey, IEqualityComparer<TKey>, Func<IEnumerable<TElement>, IEnumerable<TElement>, IEnumerable<TElement>, IEnumerable<IGrouping<TKey, TElement>>, TResult>)
Partitions a grouping and projects a result from elements groups matching a set of three keys and those groups that do not. An additional parameter specifies how to compare keys for equality.
Public methodStatic memberPermutations<T>
Generates a sequence of lists that represent the permutations of the original sequence.
Public methodStatic memberPipe<T>
Executes the given action on each element in the source sequence and yields it.
Public methodStatic memberPrepend<TSource>
Prepends a single value to a sequence.
Public methodStatic memberCode examplePreScan<TSource>
Performs a pre-scan (exclusive prefix sum) on a sequence of elements.
Public methodStatic memberRandom()
Returns an infinite sequence of random integers using the standard .NET random number generator.
Public methodStatic memberRandom(Int32)
Returns an infinite sequence of random integers between zero and a given maximum.
Public methodStatic memberRandom(Random)
Returns an infinite sequence of random integers using the supplied random number generator.
Public methodStatic memberRandom(Int32, Int32)
Returns an infinite sequence of random integers between a given minimum and a maximum.
Public methodStatic memberRandom(Random, Int32)
Returns an infinite sequence of random integers between zero and a given maximum using the supplied random number generator.
Public methodStatic memberRandom(Random, Int32, Int32)
Returns an infinite sequence of random integers between a given minumum and a maximum using the supplied random number generator.
Public methodStatic memberRandomDouble()
Returns an infinite sequence of random double values between 0.0 and 1.0
Public methodStatic memberRandomDouble(Random)
Returns an infinite sequence of random double values between 0.0 and 1.0 using the supplied random number generator.
Public methodStatic memberRandomSubset<T>(IEnumerable<T>, Int32)
Returns a sequence of a specified size of random elements from the original sequence
Public methodStatic memberRandomSubset<T>(IEnumerable<T>, Int32, Random)
Returns a sequence of a specified size of random elements from the original sequence
Public methodStatic memberRank<TSource>(IEnumerable<TSource>)
Ranks each item in the sequence in descending ordering using a default comparer.
Public methodStatic memberRank<TSource>(IEnumerable<TSource>, IComparer<TSource>)
Rank each item in the sequence using a caller-supplied comparer.
Public methodStatic memberRankBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)
Ranks each item in the sequence in descending ordering by a specified key using a default comparer
Public methodStatic memberRankBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)
Ranks each item in a sequence using a specified key and a caller-supplied comparer
Public methodStatic memberRepeat<T>(IEnumerable<T>)
Repeats the sequence forever.
Public methodStatic memberRepeat<T>(IEnumerable<T>, Int32)
Repeats the sequence the specified number of times.
Public methodStatic memberRunLengthEncode<T>(IEnumerable<T>)
Run-length encodes a sequence by converting consecutive instances of the same element into a KeyValuePair{T,int} representing the item and its occurrence count.
Public methodStatic memberRunLengthEncode<T>(IEnumerable<T>, IEqualityComparer<T>)
Run-length encodes a sequence by converting consecutive instances of the same element into a KeyValuePair{T,int} representing the item and its occurrence count. This overload uses a custom equality comparer to identify equivalent items.
Public methodStatic memberCode exampleScan<TSource>(IEnumerable<TSource>, Func<TSource, TSource, TSource>)
Peforms a scan (inclusive prefix sum) on a sequence of elements.
Public methodStatic memberCode exampleScan<TSource, TState>(IEnumerable<TSource>, TState, Func<TState, TSource, TState>)
Public methodStatic memberCode exampleScanRight<TSource>(IEnumerable<TSource>, Func<TSource, TSource, TSource>)
Public methodStatic memberCode exampleScanRight<TSource, TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TSource, TAccumulate, TAccumulate>)
Public methodStatic memberSegment<T>(IEnumerable<T>, Func<T, Boolean>)
Divides a sequence into multiple sequences by using a segment detector based on the original sequence
Public methodStatic memberSegment<T>(IEnumerable<T>, Func<T, Int32, Boolean>)
Divides a sequence into multiple sequences by using a segment detector based on the original sequence
Public methodStatic memberSegment<T>(IEnumerable<T>, Func<T, T, Int32, Boolean>)
Divides a sequence into multiple sequences by using a segment detector based on the original sequence
Public methodStatic memberCode exampleSequence(Int32, Int32)
Generates a sequence of integral numbers within the (inclusive) specified range. If sequence is ascending the step is +1, otherwise -1.
Public methodStatic memberCode exampleSequence(Int32, Int32, Int32)
Generates a sequence of integral numbers within the (inclusive) specified range. An additional parameter specifies the steps in which the integers of the sequence increase or decrease.
Public methodStatic memberCode exampleSingleOrFallback<TSource> Obsolete.
Returns the single element in the given sequence, or the result of executing a fallback delegate if the sequence is empty. This method throws an exception if there is more than one element in the sequence.
Public methodStatic memberSkipLast<T>
Bypasses a specified number of elements at the end of the sequence.
Public methodStatic memberSkipUntil<TSource>
Skips items from the input sequence until the given predicate returns true when applied to the current source item; that item will be the last skipped.
Public methodStatic memberSlice<T>
Extracts a contiguous count of elements from a sequence at a particular zero-based starting index
Public methodStatic memberSortedMerge<TSource>(IEnumerable<TSource>, OrderByDirection,IEnumerable<TSource>[])
Merges two or more sequences that are in a common order (either ascending or descending) into a single sequence that preserves that order.
Public methodStatic memberSortedMerge<TSource>(IEnumerable<TSource>, OrderByDirection, IComparer<TSource>,IEnumerable<TSource>[])
Merges two or more sequences that are in a common order (either ascending or descending) into a single sequence that preserves that order.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>)
Splits the source sequence by separator elements identified by a function.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource)
Splits the source sequence by a separator.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>, Int32)
Splits the source sequence by separator elements identified by a function, given a maximum count of splits.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>)
Splits the source sequence by a separator and then transforms the splits into results.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource, Int32)
Splits the source sequence by a separator given a maximum count of splits.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>, Int32)
Splits the source sequence by a separator, given a maximum count of splits. A parameter specifies how the separator is compared for equality.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, Func<TSource, Boolean>, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by separator elements identified by a function and then transforms the splits into results.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator and then transforms the splits into results.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, Func<TSource, Boolean>, Int32, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by separator elements identified by a function, given a maximum count of splits, and then transforms the splits into results.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator and then transforms the splits into results. A parameter specifies how the separator is compared for equality.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, Int32, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator, given a maximum count of splits, and then transforms the splits into results.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>, Int32, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator, given a maximum count of splits, and then transforms the splits into results. A parameter specifies how the separator is compared for equality.
Public methodStatic memberStartsWith<T>(IEnumerable<T>, IEnumerable<T>)
Determines whether the beginning of the first sequence is equivalent to the second sequence, using the default equality comparer.
Public methodStatic memberStartsWith<T>(IEnumerable<T>, IEnumerable<T>, IEqualityComparer<T>)
Determines whether the beginning of the first sequence is equivalent to the second sequence, using the specified element equality comparer.
Public methodStatic memberSubsets<T>(IEnumerable<T>)
Returns a sequence of IList< T> representing all of the subsets of any size that are part of the original sequence. In mathematics, it is equivalent to the power set of a set.
Public methodStatic memberSubsets<T>(IEnumerable<T>, Int32)
Returns a sequence of IList< T> representing all subsets of a given size that are part of the original sequence. In mathematics, it is equivalent to the combinations or k-subsets of a set.
Public methodStatic memberCode exampleTagFirstLast<TSource, TResult>
Returns a sequence resulting from applying a function to each element in the source sequence with additional parameters indicating whether the element is the first and/or last of the sequence.
Public methodStatic memberCode exampleTakeEvery<TSource>
Returns every N-th element of a sequence.
Public methodStatic memberCode exampleTakeLast<TSource>
Returns a specified number of contiguous elements from the end of a sequence.
Public methodStatic memberTakeUntil<TSource>
Returns items from the input sequence until the given predicate returns true when applied to the current source item; that item will be the last returned.
Public methodStatic memberThenBy<T, TKey>(IOrderedEnumerable<T>, Func<T, TKey>, OrderByDirection)
Performs a subsequent ordering of elements in a sequence in a particular direction (ascending, descending) according to a key
Public methodStatic memberThenBy<T, TKey>(IOrderedEnumerable<T>, Func<T, TKey>, IComparer<TKey>, OrderByDirection)
Performs a subsequent ordering of elements in a sequence in a particular direction (ascending, descending) according to a key
Public methodStatic memberToArrayByIndex<T>(IEnumerable<T>, Func<T, Int32>)
Creates an array from an IEnumerable< T> where a function is used to determine the index at which an element will be placed in the array.
Public methodStatic memberToArrayByIndex<T>(IEnumerable<T>, Int32, Func<T, Int32>)
Creates an array of user-specified length from an IEnumerable< T> where a function is used to determine the index at which an element will be placed in the array.
Public methodStatic memberToArrayByIndex<T, TResult>(IEnumerable<T>, Func<T, Int32>, Func<T, TResult>)
Creates an array from an IEnumerable< T> where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.
Public methodStatic memberToArrayByIndex<T, TResult>(IEnumerable<T>, Func<T, Int32>, Func<T, Int32, TResult>)
Creates an array from an IEnumerable< T> where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.
Public methodStatic memberToArrayByIndex<T, TResult>(IEnumerable<T>, Int32, Func<T, Int32>, Func<T, TResult>)
Creates an array of user-specified length from an IEnumerable< T> where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.
Public methodStatic memberToArrayByIndex<T, TResult>(IEnumerable<T>, Int32, Func<T, Int32>, Func<T, Int32, TResult>)
Creates an array of user-specified length from an IEnumerable< T> where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.
Public methodStatic memberToDataTable<T>(IEnumerable<T>)
Converts a sequence to a DataTable object.
Public methodStatic memberToDataTable<T>(IEnumerable<T>,Expression<Func<T, Object>>[])
Appends elements in the sequence as rows of a given DataTable object with a set of lambda expressions specifying which members (property or field) of each element in the sequence will supply the column values.
Public methodStatic memberToDataTable<T, TTable>(IEnumerable<T>, TTable)
Appends elements in the sequence as rows of a given DataTable object.
Public methodStatic memberToDataTable<T, TTable>(IEnumerable<T>, TTable,Expression<Func<T, Object>>[])
Appends elements in the sequence as rows of a given DataTable object with a set of lambda expressions specifying which members (property or field) of each element in the sequence will supply the column values.
Public methodStatic memberToDelimitedString(IEnumerable<Boolean>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Byte>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Char>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Decimal>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Double>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Int16>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Int32>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Int64>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<SByte>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Single>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<String>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<UInt16>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<UInt32>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<UInt64>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString(IEnumerable<Boolean>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Byte>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Char>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Decimal>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Double>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Int16>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Int32>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Int64>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<SByte>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<Single>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<String>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<UInt16>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<UInt32>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString(IEnumerable<UInt64>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDelimitedString<TSource>(IEnumerable<TSource>) Obsolete.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Public methodStatic memberToDelimitedString<TSource>(IEnumerable<TSource>, String)
Creates a delimited string from a sequence of values and a given delimiter.
Public methodStatic memberToDictionary<TKey, TValue>(IEnumerable<KeyValuePair<TKey, TValue>>)
Public methodStatic memberToDictionary<TKey, TValue>(IEnumerable<ValueTuple<TKey, TValue>>)
Public methodStatic memberToDictionary<TKey, TValue>(IEnumerable<KeyValuePair<TKey, TValue>>, IEqualityComparer<TKey>)
Public methodStatic memberToDictionary<TKey, TValue>(IEnumerable<ValueTuple<TKey, TValue>>, IEqualityComparer<TKey>)
Public methodStatic memberToHashSet<TSource>(IEnumerable<TSource>)
Public methodStatic memberToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>)
Public methodStatic memberToLookup<TKey, TValue>(IEnumerable<KeyValuePair<TKey, TValue>>)
Public methodStatic memberToLookup<TKey, TValue>(IEnumerable<ValueTuple<TKey, TValue>>)
Public methodStatic memberToLookup<TKey, TValue>(IEnumerable<KeyValuePair<TKey, TValue>>, IEqualityComparer<TKey>)
Public methodStatic memberToLookup<TKey, TValue>(IEnumerable<ValueTuple<TKey, TValue>>, IEqualityComparer<TKey>)
Public methodStatic memberTrace<TSource>(IEnumerable<TSource>)
Traces the elements of a source sequence for diagnostics.
Public methodStatic memberTrace<TSource>(IEnumerable<TSource>, Func<TSource, String>)
Traces the elements of a source sequence for diagnostics using a custom formatter.
Public methodStatic memberTrace<TSource>(IEnumerable<TSource>, String)
Traces the elements of a source sequence for diagnostics using custom formatting.
Public methodStatic memberTraverseBreadthFirst<T>
Traverses a tree in a breadth-first fashion, starting at a root node and using a user-defined function to get the children at each node of the tree.
Public methodStatic memberTraverseDepthFirst<T>
Traverses a tree in a depth-first fashion, starting at a root node and using a user-defined function to get the children at each node of the tree.
Public methodStatic memberUnfold<TState, T, TResult>
Returns a sequence generated by applying a state to the generator function, and from its result, determines if the sequence should have a next element, its value, and the next state in the recursive call.
Public methodStatic memberWindowed<TSource>
Processes a sequence into a series of subsequences representing a windowed subset of the original
Public methodStatic memberCode exampleZipLongest<TFirst, TSecond, TResult>
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleZipShortest<TFirst, TSecond, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TSecond, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleZipShortest<T1, T2, T3, TResult>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, Func<T1, T2, T3, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleZipShortest<T1, T2, T3, T4, TResult>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerable<T4>, Func<T1, T2, T3, T4, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Top
See Also