Vector<T>.All Method

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

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual 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