MaximaExtensionMaximaTSource, TKey(IEnumerableTSource, FuncTSource, TKey, IComparerTKey) Method
Returns the maximal elements of the given sequence, based on
the given projection and the specified comparer for projected values.
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 4.4.0+6d97c3b1d482f98300f4446df14742b0e3fafbec
public static IExtremaEnumerable<TSource> Maxima<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> selector,
IComparer<TKey>? comparer
)
<ExtensionAttribute>
Public Shared Function Maxima(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>^ Maxima(
IEnumerable<TSource>^ source,
Func<TSource, TKey>^ selector,
IComparer<TKey>^ comparer
)
[<ExtensionAttribute>]
static member Maxima :
source : IEnumerable<'TSource> *
selector : Func<'TSource, 'TKey> *
comparer : IComparer<'TKey> -> IExtremaEnumerable<'TSource>
- source IEnumerableTSource
- Source sequence
- selector FuncTSource, TKey
- Selector to use to pick the results to compare
- comparer IComparerTKey
- Comparer to use to compare projected values
- TSource
- Type of the source sequence
- TKey
- Type of the projected element
IExtremaEnumerableTSourceThe sequence of maximal elements, according to the projection.In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableTSource. 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).
This operator uses deferred execution. The results are evaluated
and cached on first use to returned sequence.