Vector<T>.Find Method
Enumerates the indexes that match a condition.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
C#
An IEnumerable<T> of integers that enumerates the indexes of the elements in the vector for which condition returns true.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
public IEnumerable<int> Find(
Func<T, bool> condition
)Parameters
Return Value
IEnumerable<Int32>An IEnumerable<T> of integers that enumerates the indexes of the elements in the vector for which condition returns true.