Returns whether all values in a vector are .
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool All(
this Vector<bool> operand
)
<ExtensionAttribute>
Public Shared Function All (
operand As Vector(Of Boolean)
) As Boolean
public:
[ExtensionAttribute]
static bool All(
Vector<bool>^ operand
)
[<ExtensionAttribute>]
static member All :
operand : Vector<bool> -> bool
Parameters
- operand
- Type: Extreme.MathematicsVectorBoolean
A boolean vector.
Return Value
Type:
Boolean if all elements of
operand are
;
otherwise
.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
VectorBoolean. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Reference