Click or drag to resize

LargestSmallest.Smallest<TSource, TResult> Method (IEnumerable<TSource> , Int32, Func<TSource, TResult> )

Returns smallest elements (total - count) using selector to receive as transform function.

Namespace:  FinMath.Statistics
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static TSource[] Smallest<TSource, TResult>(
	this IEnumerable<TSource> source,
	int count,
	Func<TSource, TResult> selector
)
where TResult : IComparable

Parameters

source
Type: System.Collections.Generic.IEnumerable<TSource>
A sequence of values to determine the maximum value of.
count
Type: System.Int32
Numbers of elements to select.
selector
Type: System.Func<TSource, TResult>
A transform function to apply to each element.

Type Parameters

TSource
The type of the elements of source.
TResult
The selected value implements IComparable.

Return Value

Type:TSource[]
Selected smallest elements.

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).
See Also