Table of Contents

Class EnumerableExtensions

Namespace
Cuemon.Extensions.Collections.Generic
Assembly
Cuemon.Extensions.Collections.Generic.dll

Extension methods for the System.Collections.Generic.IEnumerable<T> interface.

public static class EnumerableExtensions
Inheritance
Object
EnumerableExtensions

Methods

Chunk<T>(IEnumerable<T>, Int32)

Returns a chunked System.Collections.Generic.IEnumerable<T> sequence with a maximum of the specified size. Default is 128.

public static PartitionerEnumerable<T> Chunk<T>(this IEnumerable<T> source, int size = 128)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

size Int32

The amount of elements to process at a time.

Returns

PartitionerEnumerable<T>

An System.Collections.Generic.IEnumerable<T> that contains no more than the specified size of elements from the source sequence.

Type Parameters

T

The type of the elements of source.

Remarks

The original source is reduced equivalent to the number of elements in the returned sequence.

Exceptions

System.ArgumentNullException

source is null.

System.ArgumentException

size is less or equal to 0.

OrderAscending<T>(IEnumerable<T>)

Returns ascending sorted elements from a sequence by using the default comparer to compare values.

public static IEnumerable<T> OrderAscending<T>(this IEnumerable<T> source)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

Returns

IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> that contains ascending sorted elements from the source sequence.

Type Parameters

T

The type of the elements of source.

OrderAscending<T>(IEnumerable<T>, IComparer<T>)

Returns ascending sorted elements from a sequence by using a specified System.Collections.Generic.IComparer<T> to compare values.

public static IEnumerable<T> OrderAscending<T>(this IEnumerable<T> source, IComparer<T> comparer)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

comparer IComparer<T>

An System.Collections.Generic.IComparer<T> to compare values.

Returns

IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> that contains ascending sorted elements from the source sequence.

Type Parameters

T

The type of the elements of source.

OrderDescending<T>(IEnumerable<T>)

Returns descending sorted elements from a sequence by using the default comparer to compare values.

public static IEnumerable<T> OrderDescending<T>(this IEnumerable<T> source)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

Returns

IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> that contains descending sorted elements from the source sequence.

Type Parameters

T

The type of the elements of source.

OrderDescending<T>(IEnumerable<T>, IComparer<T>)

Returns descending sorted elements from a sequence by using a specified System.Collections.Generic.IComparer<T> to compare values.

public static IEnumerable<T> OrderDescending<T>(this IEnumerable<T> source, IComparer<T> comparer)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

comparer IComparer<T>

An System.Collections.Generic.IComparer<T> to compare values.

Returns

IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> that contains descending sorted elements from the source sequence.

Type Parameters

T

The type of the elements of source.

RandomOrDefault<T>(IEnumerable<T>)

Returns a random element of a sequence of elements, or a default value if no element is found.

public static T RandomOrDefault<T>(this IEnumerable<T> source)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

Returns

T

default if source is empty; otherwise, a random element of source.

Type Parameters

T

The type of the elements of source.

Shuffle<T>(IEnumerable<T>)

Shuffles the specified source like a deck of cards.

public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

Returns

IEnumerable<T>

A sequence of T with the shuffled source.

Type Parameters

T

Remarks

Shuffle<T>(IEnumerable<T>, Func<Int32, Int32, Int32>)

Shuffles the specified source like a deck of cards.

public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Func<int, int, int> randomizer)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

randomizer Func<Int32, Int32, Int32>

The function delegate that will handle the randomization of source.

Returns

IEnumerable<T>

A sequence of T with the shuffled source.

Type Parameters

T

Remarks

ToDictionary<TKey, TValue>(IEnumerable<KeyValuePair<TKey, TValue>>)

Creates a System.Collections.Generic.Dictionary<TKey, TValue> from the specified source sequence.

public static IDictionary<TKey, TValue> ToDictionary<TKey, TValue>(this IEnumerable<KeyValuePair<TKey, TValue>> source)

Parameters

source IEnumerable<KeyValuePair<TKey, TValue>>

An System.Collections.Generic.IEnumerable<T> to extend.

Returns

IDictionary<TKey, TValue>

A System.Collections.Generic.Dictionary<TKey, TValue> that is equivalent to the specified source sequence.

Type Parameters

TKey

The type of keys in the source.

TValue

The type of values in the source.

Exceptions

System.ArgumentNullException

source is null.

System.ArgumentException

source contains at least one System.Collections.Generic.KeyValuePair`2 that produces duplicate keys for two elements.

ToDictionary<TKey, TValue>(IEnumerable<KeyValuePair<TKey, TValue>>, IEqualityComparer<TKey>)

Creates a System.Collections.Generic.Dictionary<TKey, TValue> from the specified source sequence.

public static IDictionary<TKey, TValue> ToDictionary<TKey, TValue>(this IEnumerable<KeyValuePair<TKey, TValue>> source, IEqualityComparer<TKey> comparer)

Parameters

source IEnumerable<KeyValuePair<TKey, TValue>>

An System.Collections.Generic.IEnumerable<T> to extend.

comparer IEqualityComparer<TKey>

The System.Collections.Generic.IEqualityComparer<T> implementation to use when comparing keys.

Returns

IDictionary<TKey, TValue>

A System.Collections.Generic.Dictionary<TKey, TValue> that is equivalent to the specified source sequence.

Type Parameters

TKey

The type of keys in the source.

TValue

The type of values in the source.

Exceptions

System.ArgumentNullException

source is null - or - comparer is null.

System.ArgumentException

source contains at least one System.Collections.Generic.KeyValuePair`2 that produces duplicate keys for two elements.

ToPagination<T>(IEnumerable<T>, Func<Int32>, Action<PaginationOptions>)

Converts the specified source to a generic and read-only pagination sequence.

public static PaginationEnumerable<T> ToPagination<T>(this IEnumerable<T> source, Func<int> totalElementCounter, Action<PaginationOptions> setup = null)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

totalElementCounter Func<Int32>

The total element counter.

setup Action<PaginationOptions>

The PaginationOptions which may be configured.

Returns

PaginationEnumerable<T>

An instance of PaginationEnumerable<T>.

Type Parameters

T

The type of elements in the collection.

ToPaginationList<T>(IEnumerable<T>, Func<Int32>, Action<PaginationOptions>)

Converts the specified source to an eagerly materialized generic and read-only pagination list.

public static PaginationList<T> ToPaginationList<T>(this IEnumerable<T> source, Func<int> totalElementCounter, Action<PaginationOptions> setup = null)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

totalElementCounter Func<Int32>

The total element counter.

setup Action<PaginationOptions>

The PaginationOptions which may be configured.

Returns

PaginationList<T>

An instance of PaginationList<T>.

Type Parameters

T

The type of elements in the collection.

ToPartitioner<T>(IEnumerable<T>, Int32)

Extends the specified source to support iterating in partitions.

public static PartitionerEnumerable<T> ToPartitioner<T>(this IEnumerable<T> source, int partitionSize = 128)

Parameters

source IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> to extend.

partitionSize Int32

The size of the partitions.

Returns

PartitionerEnumerable<T>

An instance of PartitionerEnumerable<T>.

Type Parameters

T

The type of elements in the source.

Yield<T>(T)

Returns an System.Collections.Generic.IEnumerable<T> sequence with the specified value as the only element.

public static IEnumerable<T> Yield<T>(this T value)

Parameters

value T

The T to extend.

Returns

IEnumerable<T>

An System.Collections.Generic.IEnumerable<T> sequence with the specified value as the only element.

Type Parameters

T

The type of the element of System.Collections.Generic.IEnumerable<T>.