CollectionExtensionsThresholdTObject Method

CVB.Net Documentation
Remove all values in a collection that lies below a threshold.

Namespace:  Stemmer.Cvb.Collections.Generic
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public static IEnumerable<TObject> Threshold<TObject>(
	this IEnumerable<TObject> coll,
	double threshold
)
where TObject : IQualified

Parameters

coll
Type: System.Collections.GenericIEnumerableTObject
list to be thresholded
threshold
Type: SystemDouble
threshold to apply

Type Parameters

TObject
object type

Return Value

Type: IEnumerableTObject

[Missing <returns> documentation for "M:Stemmer.Cvb.Collections.Generic.CollectionExtensions.Threshold``1(System.Collections.Generic.IEnumerable{``0},System.Double)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTObject. 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

Reference