-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_EnumValues
Andrew Koryavchenko edited this page Jun 17, 2018
·
1 revision
Holds information about enum members
System.Object
CodeJam.EnumValues
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public class EnumValues : IReadOnlyCollection<EnumValue>,
IEnumerable<EnumValue>, IEnumerable
VB
Public Class EnumValues
Implements IReadOnlyCollection(Of EnumValue), IEnumerable(Of EnumValue),
IEnumerable
F#
type EnumValues =
class
interface IReadOnlyCollection<EnumValue>
interface IEnumerable<EnumValue>
interface IEnumerable
end
The EnumValues type exposes the following members.
Name | Description | |
---|---|---|
Count | Gets the count. | |
EnumName | Gets the name of the enum. | |
EnumType | Gets the type of the enum. |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetByDisplayName | Gets enum field by its display name. | |
GetByName(String) | Tries to get enum field by its name. | |
GetByName(String, Boolean) | Tries to get enum field by its name. | |
GetByValue | Tries to get enum field by its value. | |
GetEnumerator | Gets the enumerator. | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IsDefined(String) | Determines whether the specified enum name is defined. | |
IsDefined(String, Boolean) | Determines whether the specified enum name is defined. | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
AggregateOrDefault(EnumValue)(Func(EnumValue, EnumValue, EnumValue), EnumValue) | Overloaded. Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.) |
|
AggregateOrDefault(EnumValue)(Func(EnumValue, EnumValue, EnumValue), Func(EnumValue)) | Overloaded. Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.) |
|
AggregateOrDefault(EnumValue, TAccumulate)(TAccumulate, Func(TAccumulate, EnumValue, TAccumulate), TAccumulate) | Overloaded. Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.) |
|
AggregateOrDefault(EnumValue, TAccumulate)(TAccumulate, Func(TAccumulate, EnumValue, TAccumulate), Func(TAccumulate)) | Overloaded. Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.) |
|
AggregateOrDefault(EnumValue, TAccumulate, TResult)(TAccumulate, Func(TAccumulate, EnumValue, TAccumulate), Func(TAccumulate, TResult), TResult) | Overloaded. Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.) |
|
AggregateOrDefault(EnumValue, TAccumulate, TResult)(TAccumulate, Func(TAccumulate, EnumValue, TAccumulate), Func(TAccumulate, TResult), Func(TResult)) | Overloaded. Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.) |
|
AsArray(EnumValue) | Casts the specified sequence to array if possible, or creates an array from. (Defined by EnumerableExtensions.) | |
AsList(EnumValue) | Casts the specified sequence to List(T) if possible, or creates a List(T) from. (Defined by EnumerableExtensions.) | |
CombineWithNext(EnumValue, TResult) | Combines item with next value from the sequence. (Defined by EnumerableExtensions.) | |
CombineWithPrevious(EnumValue, TResult)(Func(EnumValue, EnumValue, TResult)) | Overloaded. Combines item with previous value from the sequence. (Defined by EnumerableExtensions.) |
|
CombineWithPrevious(EnumValue, TResult)(EnumValue, Func(EnumValue, EnumValue, TResult)) | Overloaded. Combines item with previous value from the sequence. (Defined by EnumerableExtensions.) |
|
Concat(EnumValue)(EnumValue) | Overloaded. Appends specified element to end of the collection. (Defined by EnumerableExtensions.) |
|
Concat(EnumValue)(EnumValue[]) | Overloaded. Appends specified elements to end of the collection. (Defined by EnumerableExtensions.) |
|
DistinctBy(EnumValue, TKey)(Func(EnumValue, TKey)) | Overloaded. Returns a sequence with distinct elements from the input sequence based on the specified key. (Defined by EnumerableExtensions.) |
|
DistinctBy(EnumValue, TKey)(Func(EnumValue, TKey), IEqualityComparer(TKey)) | Overloaded. Returns a sequence with distinct elements from the input sequence based on the specified key and key comparer. (Defined by EnumerableExtensions.) |
|
EmptyIfNull(EnumValue) | Returns an empty instance of the collection for null values. (Defined by CollectionExtensions.) | |
ExceptBy(EnumValue, TKey)(IEnumerable(EnumValue), Func(EnumValue, TKey)) | Overloaded. Produces the set difference of two sequences by using the specified key to compare values. (Defined by EnumerableExtensions.) |
|
ExceptBy(EnumValue, TKey)(IEnumerable(EnumValue), Func(EnumValue, TKey), IEqualityComparer(TKey)) | Overloaded. Produces the set difference of two sequences by using the specified key and IEqualityComparer(T) to compare values. (Defined by EnumerableExtensions.) |
|
FirstOrDefault(EnumValue)(EnumValue) | Overloaded. Returns first element, or specified defaultValue, if sequence is empty. (Defined by EnumerableExtensions.) |
|
FirstOrDefault(EnumValue)(EnumValue, Func(EnumValue, Boolean)) | Overloaded. Returns the first element of the sequence that satisfies a condition or a specified defaultValue if no such element is found. (Defined by EnumerableExtensions.) |
|
Flatten(EnumValue) | Returns a flattened sequence from a graph or hierarchy of elements by using the specified children selector. (Defined by EnumerableExtensions.) | |
GroupTopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue))) | Overloaded. Performs topological sort on source. (Defined by EnumerableExtensions.) |
|
GroupTopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue)), IEqualityComparer(EnumValue)) | Overloaded. Performs topological sort on source. (Defined by EnumerableExtensions.) |
|
GroupWhile(EnumValue) | Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.) | |
GroupWhileEquals(EnumValue, TKey)(Func(EnumValue, TKey)) | Overloaded. Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.) |
|
GroupWhileEquals(EnumValue, TKey)(Func(EnumValue, TKey), IEqualityComparer(TKey)) | Overloaded. Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.) |
|
GroupWhileEquals(EnumValue, TItem, TKey)(Func(EnumValue, TKey), Func(EnumValue, TItem)) | Overloaded. Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.) |
|
GroupWhileEquals(EnumValue, TItem, TKey)(Func(EnumValue, TKey), Func(EnumValue, TItem), IEqualityComparer(TKey)) | Overloaded. Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.) |
|
IntersectBy(EnumValue, TKey)(IEnumerable(EnumValue), Func(EnumValue, TKey)) | Overloaded. Produces the set intersection of two sequences by using the specified key to compare values. (Defined by EnumerableExtensions.) |
|
IntersectBy(EnumValue, TKey)(IEnumerable(EnumValue), Func(EnumValue, TKey), IEqualityComparer(TKey)) | Overloaded. Produces the set intersection of two sequences by using the specified key and IEqualityComparer(T) to compare values. (Defined by EnumerableExtensions.) |
|
IsFirst(EnumValue)(EnumValue) | Overloaded. Checks, if item is first element of source. (Defined by EnumerableExtensions.) |
|
IsFirst(EnumValue)(EnumValue, IEqualityComparer(EnumValue)) | Overloaded. Checks, if item is first element of source. (Defined by EnumerableExtensions.) |
|
IsLast(EnumValue)(EnumValue) | Overloaded. Checks, if item is last element of source. (Defined by EnumerableExtensions.) |
|
IsLast(EnumValue)(EnumValue, IEqualityComparer(EnumValue)) | Overloaded. Checks, if item is last element of source. (Defined by EnumerableExtensions.) |
|
Join(EnumValue)() | Overloaded. Concatenates the members of a collection. (Defined by StringExtensions.) |
|
Join(EnumValue)(String) | Overloaded. Concatenates the members of a collection, using the specified separator between each member. (Defined by StringExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Byte)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(Byte))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, SByte)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(SByte))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Int16)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(Int16))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, UInt16)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(UInt16))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Int32)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(Int32))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, UInt32)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(UInt32))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Int64)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(Int64))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, UInt64)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(UInt64))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Single)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(Single))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Double)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(Double))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Decimal)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue)(Func(EnumValue, Nullable(Decimal))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue, TValue)(Func(EnumValue, TValue)) | Overloaded. Invokes a selector on each element of a source and returns the item with maximum value. (Defined by EnumerableExtensions.) |
|
MaxBy(EnumValue, TValue)(Func(EnumValue, TValue), IComparer(TValue)) | Overloaded. Invokes a selector on each element of a source and returns the item with maximum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Byte), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(Byte)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, SByte), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(SByte)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Int16), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(Int16)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, UInt16), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(UInt16)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Int32), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(Int32)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, UInt32), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(UInt32)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Int64), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(Int64)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, UInt64), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(UInt64)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Single), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(Single)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Double), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(Double)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Decimal), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue)(Func(EnumValue, Nullable(Decimal)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue, TValue)(Func(EnumValue, TValue), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with maximum value. (Defined by EnumerableExtensions.) |
|
MaxByOrDefault(EnumValue, TValue)(Func(EnumValue, TValue), IComparer(TValue), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with maximum value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue)() | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue)(EnumValue) | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue)(IComparer(EnumValue)) | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue)(IComparer(EnumValue), EnumValue) | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue, T)(Func(EnumValue, T)) | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue, T)(Func(EnumValue, T), T) | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T)) | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MaxOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T), T) | Overloaded. Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Byte)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(Byte))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, SByte)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(SByte))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Int16)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(Int16))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, UInt16)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(UInt16))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Int32)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(Int32))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, UInt32)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(UInt32))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Int64)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(Int64))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, UInt64)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(UInt64))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Single)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(Single))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Double)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(Double))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Decimal)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue)(Func(EnumValue, Nullable(Decimal))) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue, TValue)(Func(EnumValue, TValue)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinBy(EnumValue, TValue)(Func(EnumValue, TValue), IComparer(TValue)) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Byte), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(Byte)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, SByte), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(SByte)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Int16), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(Int16)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, UInt16), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(UInt16)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Int32), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(Int32)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, UInt32), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(UInt32)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Int64), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(Int64)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, UInt64), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(UInt64)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Single), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(Single)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Double), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(Double)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Decimal), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue)(Func(EnumValue, Nullable(Decimal)), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue, TValue)(Func(EnumValue, TValue), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinByOrDefault(EnumValue, TValue)(Func(EnumValue, TValue), IComparer(TValue), EnumValue) | Overloaded. Invokes a selector on each element of a source and returns the item with minimum value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue)() | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue)(EnumValue) | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue)(IComparer(EnumValue)) | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue)(IComparer(EnumValue), EnumValue) | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue, T)(Func(EnumValue, T)) | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue, T)(Func(EnumValue, T), T) | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T)) | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
MinOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T), T) | Overloaded. Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.) |
|
OrderBy(EnumValue) | Sorts the elements of a sequence in ascending order. (Defined by EnumerableExtensions.) | |
OrderByDescending(EnumValue) | Sorts the elements of a sequence in descending order. (Defined by EnumerableExtensions.) | |
Page(EnumValue) | Extracts pageSize elements from a sequence at a particular one-based page number. (Defined by EnumerableExtensions.) | |
Prepend(EnumValue)(EnumValue) | Overloaded. Prepends specified element to the collection start. (Defined by EnumerableExtensions.) |
|
Prepend(EnumValue)(EnumValue[]) | Overloaded. Prepends specified elements to the collection start. (Defined by EnumerableExtensions.) |
|
RunInParallel(EnumValue)(Action(EnumValue), String) | Overloaded. Runs in parallel actions for provided data source. (Defined by ParallelExtensions.) |
|
RunInParallel(EnumValue)(Int32, Action(EnumValue), String) | Overloaded. Runs in parallel actions for provided data source. (Defined by ParallelExtensions.) |
|
RunInParallel(EnumValue, TTarget)(Func(EnumValue, TTarget), Action(TTarget), String) | Overloaded. Implements Provider-Consumer pattern. (Defined by ParallelExtensions.) |
|
RunInParallel(EnumValue, TTarget)(Int32, Func(EnumValue, TTarget), Action(TTarget), String) | Overloaded. Implements Provider-Consumer pattern. (Defined by ParallelExtensions.) |
|
RunInParallel(EnumValue, TTarget)(Func(EnumValue, TTarget), Int32, Action(TTarget), String) | Overloaded. Implements Provider-Consumer pattern. (Defined by ParallelExtensions.) |
|
RunInParallel(EnumValue, TTarget)(Int32, Func(EnumValue, TTarget), Int32, Action(TTarget), String) | Overloaded. Implements Provider-Consumer pattern. (Defined by ParallelExtensions.) |
|
SkipLast(EnumValue) | Skips a specified number of contiguous elements from the end of a sequence. (Defined by EnumerableExtensions.) | |
Slice(EnumValue) | Extracts count elements from a sequence at a particular zero-based starting index. (Defined by EnumerableExtensions.) | |
Split(EnumValue) | Splits the input sequence into a sequence of chunks of the specified size. (Defined by EnumerableExtensions.) | |
TakeLast(EnumValue) | Returns a specified number of contiguous elements from the end of a sequence. (Defined by EnumerableExtensions.) | |
ToCompositeRange(EnumValue, T, TKey) | Converts sequence of elements to the composite range. (Defined by CompositeRangeExtensions.) | |
ToCompositeRangeFrom(EnumValue, T)(Func(EnumValue, T)) | Overloaded. Converts sequence of elements to the composite range using only From boundary. The To boundary value is taken from the next item in sequence (+∞ for the last item in sequence) (Defined by CompositeRangeExtensions.) |
|
ToCompositeRangeFrom(EnumValue, T, TKey)(Func(EnumValue, T), Func(EnumValue, TKey)) | Overloaded. Converts sequence of elements to the composite range using only From boundary. The To boundary value is taken from the next item in sequence (+∞ for the last item in sequence) (Defined by CompositeRangeExtensions.) |
|
ToCompositeRangeTo(EnumValue, T)(Func(EnumValue, T)) | Overloaded. Converts sequence of elements to the composite range using only To boundary. The From boundary value is taken from the previous item in sequence (-∞ for the last item in sequence). (Defined by CompositeRangeExtensions.) |
|
ToCompositeRangeTo(EnumValue, T, TKey)(Func(EnumValue, T), Func(EnumValue, TKey)) | Overloaded. Converts sequence of elements to the composite range using only To boundary. The From boundary value is taken from the previous item in sequence (-∞ for the last item in sequence). (Defined by CompositeRangeExtensions.) |
|
ToDictionary(EnumValue, TKey)(Func(EnumValue, TKey), DictionaryDuplicate) | Overloaded. Creates a Dictionary(TKey, TValue) from an IEnumerable(T) according to a specified key selector function and a duplicate handling policy. (Defined by EnumerableExtensions.) |
|
ToDictionary(EnumValue, TKey)(Func(EnumValue, TKey), IEqualityComparer(TKey), DictionaryDuplicate) | Overloaded. Creates a Dictionary(TKey, TValue) from an IEnumerable(T) according to a specified key selector function, a comparer and a duplicate handling policy. (Defined by EnumerableExtensions.) |
|
ToDictionary(EnumValue, TKey, TElement)(Func(EnumValue, TKey), Func(EnumValue, TElement), DictionaryDuplicate) | Overloaded. Creates a Dictionary(TKey, TValue) from an IEnumerable(T) according to a specified key selector function, an element selector function and a duplicate handling policy. (Defined by EnumerableExtensions.) |
|
ToDictionary(EnumValue, TKey, TElement)(Func(EnumValue, TKey), Func(EnumValue, TElement), IEqualityComparer(TKey), DictionaryDuplicate) | Overloaded. Creates a Dictionary(TKey, TValue) from an IEnumerable(T) according to a specified key selector function, an element selector function, a comparer and a duplicate handling policy. (Defined by EnumerableExtensions.) |
|
ToHashSet(EnumValue)() | Overloaded. Creates a HashSet(T) from an IEnumerable(T). (Defined by EnumerableExtensions.) |
|
ToHashSet(EnumValue)(IEqualityComparer(EnumValue)) | Overloaded. Creates a HashSet(T) from an IEnumerable(T) with the specified equality comparer. (Defined by EnumerableExtensions.) |
|
ToHashSet(EnumValue, TKey)(Func(EnumValue, TKey)) | Overloaded. Creates a HashSet(T) from an IEnumerable(T). (Defined by EnumerableExtensions.) |
|
ToHashSet(EnumValue, TKey)(Func(EnumValue, TKey), IEqualityComparer(TKey)) | Overloaded. Creates a HashSet(T) from an IEnumerable(T) with the specified equality comparer. (Defined by EnumerableExtensions.) |
|
TopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue))) | Overloaded. Performs topological sort on source. (Defined by EnumerableExtensions.) |
|
TopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue)), IEqualityComparer(EnumValue)) | Overloaded. Performs topological sort on source. (Defined by EnumerableExtensions.) |
|
TopoSort(EnumValue, TKey)(Func(EnumValue, IEnumerable(EnumValue)), Func(EnumValue, TKey)) | Overloaded. Performs topological sort on source. (Defined by EnumerableExtensions.) |
|
TopoSort(EnumValue, TKey)(Func(EnumValue, IEnumerable(EnumValue)), Func(EnumValue, TKey), IEqualityComparer(TKey)) | Overloaded. Performs topological sort on source. (Defined by EnumerableExtensions.) |
|
ToStrings(EnumValue) | Returns string representations of source items. (Defined by EnumerableExtensions.) | |
Union(EnumValue) | Produces the set union of two sequences by using the default equality comparer. (Defined by EnumerableExtensions.) | |
UnionBy(EnumValue, TKey)(IEnumerable(EnumValue), Func(EnumValue, TKey)) | Overloaded. Produces the set union of two sequences by using the specified key to compare values. (Defined by EnumerableExtensions.) |
|
UnionBy(EnumValue, TKey)(IEnumerable(EnumValue), Func(EnumValue, TKey), IEqualityComparer(TKey)) | Overloaded. Produces the set union of two sequences by using the specified key and IEqualityComparer(T) to compare values. (Defined by EnumerableExtensions.) |
|
WithIndex(EnumValue) | Associates an index to each element of the source sequence. (Defined by EnumerableExtensions.) |