Returns a Filter that selects all observations that match the specified Predicate<(Of T>).

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Function Find ( _
	predicate As Predicate(Of Object) _
) As Filter
C#
public Filter Find (
	Predicate<Object> predicate
)
C++
public:
Filter^ Find (
	Predicate<Object^>^ predicate
)

Parameters

predicate (System.Predicate<(Of T>)<>)
A Predicate<(Of T>) that is applied to each observation.

Return Value

A Filter that selects all observations for which predicate is true.

Exceptions

ExceptionCondition
ArgumentNullExceptionpredicate is nullNothingnullptr.