MoreEnumerable.MinBy<TSource, TKey> Method (IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>) |
Returns the minimal elements of the given sequence, based on
the given projection and the specified comparer for projected values.
Namespace:
MoreLinq
Assembly:
MoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntaxpublic static IExtremaEnumerable<TSource> MinBy<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> selector,
IComparer<TKey> comparer
)
<ExtensionAttribute>
Public Shared Function MinBy(Of TSource, TKey) (
source As IEnumerable(Of TSource),
selector As Func(Of TSource, TKey),
comparer As IComparer(Of TKey)
) As IExtremaEnumerable(Of TSource)
public:
[ExtensionAttribute]
generic<typename TSource, typename TKey>
static IExtremaEnumerable<TSource>^ MinBy(
IEnumerable<TSource>^ source,
Func<TSource, TKey>^ selector,
IComparer<TKey>^ comparer
)
[<ExtensionAttribute>]
static member MinBy :
source : IEnumerable<'TSource> *
selector : Func<'TSource, 'TKey> *
comparer : IComparer<'TKey> -> IExtremaEnumerable<'TSource>
Parameters
- source
- Type: System.Collections.Generic.IEnumerable<TSource>
Source sequence - selector
- Type: System.Func<TSource, TKey>
Selector to use to pick the results to compare - comparer
- Type: System.Collections.Generic.IComparer<TKey>
Comparer to use to compare projected values
Type Parameters
- TSource
- Type of the source sequence
- TKey
- Type of the projected element
Return Value
Type:
IExtremaEnumerable<TSource>The minimal element, according to the projection.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Exceptions
Remarks
This operator uses deferred execution. The results are evaluated
and cached on first use to returned sequence.
See Also