ConstantVector<T>.Any Method

Returns whether any of 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 Any(
	Func<T, bool> condition
)

Parameters

condition  Func<T, Boolean>
 

Return Value

Boolean
true if at least one element satisfies condition; otherwise false.

See Also