Vector<T>.Find Method

Enumerates the indexes that match a condition.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public IEnumerable<int> Find(
	Func<T, bool> condition
)

Parameters

condition  Func<T, Boolean>
A delegate that represents a predicate that specifies the condition to test.

Return Value

IEnumerable<Int32>
An IEnumerable<T> of integers that enumerates the indexes of the elements in the vector for which condition returns true.

See Also