Click or drag to resize

DiagonalMatrixStorageTFind Method

Finds the first element matching a predicate.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public override Tuple<int, int, T> Find(
	Func<T, bool> predicate,
	Zeros zeros
)

Parameters

predicate  FuncT, Boolean
The predicate used to test values.
zeros  Zeros
How zeros are handled during the search.

Return Value

TupleInt32, Int32, T
The first matching indexed value, or if none is found.
See Also