Skip to content

T_CodeJam_EnumValues

Andrew Koryavchenko edited this page Jun 17, 2018 · 1 revision

EnumValues Class

Holds information about enum members

Inheritance Hierarchy

System.Object
  CodeJam.EnumValues
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

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.

Properties

 

Name Description
Public property Count Gets the count.
Public property EnumName Gets the name of the enum.
Public property EnumType Gets the type of the enum.
  Back to Top

Methods

 

Name Description
Public method Equals Determines whether the specified object is equal to the current object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetByDisplayName Gets enum field by its display name.
Public method GetByName(String) Tries to get enum field by its name.
Public method GetByName(String, Boolean) Tries to get enum field by its name.
Public method GetByValue Tries to get enum field by its value.
Public method GetEnumerator Gets the enumerator.
Public method GetHashCode Serves as the default hash function. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method IsDefined(String) Determines whether the specified enum name is defined.
Public method IsDefined(String, Boolean) Determines whether the specified enum name is defined.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
  Back to Top

Extension Methods

 

Name Description
Public Extension Method AggregateOrDefault(EnumValue)(Func(EnumValue, EnumValue, EnumValue), EnumValue) Overloaded.
Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.)
Public Extension Method AggregateOrDefault(EnumValue)(Func(EnumValue, EnumValue, EnumValue), Func(EnumValue)) Overloaded.
Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.)
Public Extension Method AggregateOrDefault(EnumValue, TAccumulate)(TAccumulate, Func(TAccumulate, EnumValue, TAccumulate), TAccumulate) Overloaded.
Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.)
Public Extension Method AggregateOrDefault(EnumValue, TAccumulate)(TAccumulate, Func(TAccumulate, EnumValue, TAccumulate), Func(TAccumulate)) Overloaded.
Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.)
Public Extension Method AggregateOrDefault(EnumValue, TAccumulate, TResult)(TAccumulate, Func(TAccumulate, EnumValue, TAccumulate), Func(TAccumulate, TResult), TResult) Overloaded.
Applies an accumulator function over a sequence. (Defined by EnumerableExtensions.)
Public Extension Method 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.)
Public Extension Method AsArray(EnumValue) Casts the specified sequence to array if possible, or creates an array from. (Defined by EnumerableExtensions.)
Public Extension Method AsList(EnumValue) Casts the specified sequence to List(T) if possible, or creates a List(T) from. (Defined by EnumerableExtensions.)
Public Extension Method CombineWithNext(EnumValue, TResult) Combines item with next value from the sequence. (Defined by EnumerableExtensions.)
Public Extension Method CombineWithPrevious(EnumValue, TResult)(Func(EnumValue, EnumValue, TResult)) Overloaded.
Combines item with previous value from the sequence. (Defined by EnumerableExtensions.)
Public Extension Method CombineWithPrevious(EnumValue, TResult)(EnumValue, Func(EnumValue, EnumValue, TResult)) Overloaded.
Combines item with previous value from the sequence. (Defined by EnumerableExtensions.)
Public Extension Method Concat(EnumValue)(EnumValue) Overloaded.
Appends specified element to end of the collection. (Defined by EnumerableExtensions.)
Public Extension Method Concat(EnumValue)(EnumValue[]) Overloaded.
Appends specified elements to end of the collection. (Defined by EnumerableExtensions.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method EmptyIfNull(EnumValue) Returns an empty instance of the collection for null values. (Defined by CollectionExtensions.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method FirstOrDefault(EnumValue)(EnumValue) Overloaded.
Returns first element, or specified defaultValue, if sequence is empty. (Defined by EnumerableExtensions.)
Public Extension Method 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.)
Public Extension Method Flatten(EnumValue) Returns a flattened sequence from a graph or hierarchy of elements by using the specified children selector. (Defined by EnumerableExtensions.)
Public Extension Method GroupTopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue))) Overloaded.
Performs topological sort on source. (Defined by EnumerableExtensions.)
Public Extension Method GroupTopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue)), IEqualityComparer(EnumValue)) Overloaded.
Performs topological sort on source. (Defined by EnumerableExtensions.)
Public Extension Method GroupWhile(EnumValue) Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.)
Public Extension Method GroupWhileEquals(EnumValue, TKey)(Func(EnumValue, TKey)) Overloaded.
Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.)
Public Extension Method GroupWhileEquals(EnumValue, TKey)(Func(EnumValue, TKey), IEqualityComparer(TKey)) Overloaded.
Groups items in the sequence while they have same grouping key. (Defined by EnumerableExtensions.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method IsFirst(EnumValue)(EnumValue) Overloaded.
Checks, if item is first element of source. (Defined by EnumerableExtensions.)
Public Extension Method IsFirst(EnumValue)(EnumValue, IEqualityComparer(EnumValue)) Overloaded.
Checks, if item is first element of source. (Defined by EnumerableExtensions.)
Public Extension Method IsLast(EnumValue)(EnumValue) Overloaded.
Checks, if item is last element of source. (Defined by EnumerableExtensions.)
Public Extension Method IsLast(EnumValue)(EnumValue, IEqualityComparer(EnumValue)) Overloaded.
Checks, if item is last element of source. (Defined by EnumerableExtensions.)
Public Extension Method Join(EnumValue)() Overloaded.
Concatenates the members of a collection. (Defined by StringExtensions.)
Public Extension Method Join(EnumValue)(String) Overloaded.
Concatenates the members of a collection, using the specified separator between each member. (Defined by StringExtensions.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method MaxOrDefault(EnumValue)() Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MaxOrDefault(EnumValue)(EnumValue) Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MaxOrDefault(EnumValue)(IComparer(EnumValue)) Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MaxOrDefault(EnumValue)(IComparer(EnumValue), EnumValue) Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MaxOrDefault(EnumValue, T)(Func(EnumValue, T)) Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MaxOrDefault(EnumValue, T)(Func(EnumValue, T), T) Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MaxOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T)) Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MaxOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T), T) Overloaded.
Returns maximum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method MinOrDefault(EnumValue)() Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MinOrDefault(EnumValue)(EnumValue) Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MinOrDefault(EnumValue)(IComparer(EnumValue)) Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MinOrDefault(EnumValue)(IComparer(EnumValue), EnumValue) Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MinOrDefault(EnumValue, T)(Func(EnumValue, T)) Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MinOrDefault(EnumValue, T)(Func(EnumValue, T), T) Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MinOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T)) Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method MinOrDefault(EnumValue, T)(Func(EnumValue, T), IComparer(T), T) Overloaded.
Returns minimum item from the sequence or default value. (Defined by EnumerableExtensions.)
Public Extension Method OrderBy(EnumValue) Sorts the elements of a sequence in ascending order. (Defined by EnumerableExtensions.)
Public Extension Method OrderByDescending(EnumValue) Sorts the elements of a sequence in descending order. (Defined by EnumerableExtensions.)
Public Extension Method Page(EnumValue) Extracts pageSize elements from a sequence at a particular one-based page number. (Defined by EnumerableExtensions.)
Public Extension Method Prepend(EnumValue)(EnumValue) Overloaded.
Prepends specified element to the collection start. (Defined by EnumerableExtensions.)
Public Extension Method Prepend(EnumValue)(EnumValue[]) Overloaded.
Prepends specified elements to the collection start. (Defined by EnumerableExtensions.)
Public Extension Method RunInParallel(EnumValue)(Action(EnumValue), String) Overloaded.
Runs in parallel actions for provided data source. (Defined by ParallelExtensions.)
Public Extension Method RunInParallel(EnumValue)(Int32, Action(EnumValue), String) Overloaded.
Runs in parallel actions for provided data source. (Defined by ParallelExtensions.)
Public Extension Method RunInParallel(EnumValue, TTarget)(Func(EnumValue, TTarget), Action(TTarget), String) Overloaded.
Implements Provider-Consumer pattern. (Defined by ParallelExtensions.)
Public Extension Method RunInParallel(EnumValue, TTarget)(Int32, Func(EnumValue, TTarget), Action(TTarget), String) Overloaded.
Implements Provider-Consumer pattern. (Defined by ParallelExtensions.)
Public Extension Method RunInParallel(EnumValue, TTarget)(Func(EnumValue, TTarget), Int32, Action(TTarget), String) Overloaded.
Implements Provider-Consumer pattern. (Defined by ParallelExtensions.)
Public Extension Method RunInParallel(EnumValue, TTarget)(Int32, Func(EnumValue, TTarget), Int32, Action(TTarget), String) Overloaded.
Implements Provider-Consumer pattern. (Defined by ParallelExtensions.)
Public Extension Method SkipLast(EnumValue) Skips a specified number of contiguous elements from the end of a sequence. (Defined by EnumerableExtensions.)
Public Extension Method Slice(EnumValue) Extracts count elements from a sequence at a particular zero-based starting index. (Defined by EnumerableExtensions.)
Public Extension Method Split(EnumValue) Splits the input sequence into a sequence of chunks of the specified size. (Defined by EnumerableExtensions.)
Public Extension Method TakeLast(EnumValue) Returns a specified number of contiguous elements from the end of a sequence. (Defined by EnumerableExtensions.)
Public Extension Method ToCompositeRange(EnumValue, T, TKey) Converts sequence of elements to the composite range. (Defined by CompositeRangeExtensions.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method ToHashSet(EnumValue)() Overloaded.
Creates a HashSet(T) from an IEnumerable(T). (Defined by EnumerableExtensions.)
Public Extension Method ToHashSet(EnumValue)(IEqualityComparer(EnumValue)) Overloaded.
Creates a HashSet(T) from an IEnumerable(T) with the specified equality comparer. (Defined by EnumerableExtensions.)
Public Extension Method ToHashSet(EnumValue, TKey)(Func(EnumValue, TKey)) Overloaded.
Creates a HashSet(T) from an IEnumerable(T). (Defined by EnumerableExtensions.)
Public Extension Method 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.)
Public Extension Method TopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue))) Overloaded.
Performs topological sort on source. (Defined by EnumerableExtensions.)
Public Extension Method TopoSort(EnumValue)(Func(EnumValue, IEnumerable(EnumValue)), IEqualityComparer(EnumValue)) Overloaded.
Performs topological sort on source. (Defined by EnumerableExtensions.)
Public Extension Method TopoSort(EnumValue, TKey)(Func(EnumValue, IEnumerable(EnumValue)), Func(EnumValue, TKey)) Overloaded.
Performs topological sort on source. (Defined by EnumerableExtensions.)
Public Extension Method TopoSort(EnumValue, TKey)(Func(EnumValue, IEnumerable(EnumValue)), Func(EnumValue, TKey), IEqualityComparer(TKey)) Overloaded.
Performs topological sort on source. (Defined by EnumerableExtensions.)
Public Extension Method ToStrings(EnumValue) Returns string representations of source items. (Defined by EnumerableExtensions.)
Public Extension Method Union(EnumValue) Produces the set union of two sequences by using the default equality comparer. (Defined by EnumerableExtensions.)
Public Extension Method 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.)
Public Extension Method 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.)
Public Extension Method WithIndex(EnumValue) Associates an index to each element of the source sequence. (Defined by EnumerableExtensions.)
  Back to Top

See Also

Reference

CodeJam Namespace

Clone this wiki locally