ConstantVector<T>.All Method

Returns whether all the elements of the vector satisfy a condition.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public override bool All(
	Func<T, bool> condition
)

Parameters

condition  Func<T, Boolean>
 

Return Value

Boolean
true if all the elements satisfy condition; otherwise false.

See Also