-
Notifications
You must be signed in to change notification settings - Fork 35
Overload_CodeJam_Collections_EnumerableExtensions_MinBy
Andrew Koryavchenko edited this page Jul 4, 2017
·
3 revisions
Name | Description | |
---|---|---|
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Byte)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Decimal)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Double)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Int16)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Int32)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Int64)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(Byte))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(Decimal))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(Double))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(Int16))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(Int32))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(Int64))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(SByte))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(Single))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(UInt16))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(UInt32))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Nullable(UInt64))) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, SByte)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, Single)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, UInt16)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, UInt32)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource)(IEnumerable(TSource), Func(TSource, UInt64)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource, TValue)(IEnumerable(TSource), Func(TSource, TValue)) | Invokes a selector on each element of a source and returns the item with minimum value. | |
MinBy(TSource, TValue)(IEnumerable(TSource), Func(TSource, TValue), IComparer(TValue)) | Invokes a selector on each element of a source and returns the item with minimum value. |