Returns whether at least one value in a vector is .
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool Any(
this Vector<bool> operand
)
<ExtensionAttribute>
Public Shared Function Any (
operand As Vector(Of Boolean)
) As Boolean
public:
[ExtensionAttribute]
static bool Any(
Vector<bool>^ operand
)
[<ExtensionAttribute>]
static member Any :
operand : Vector<bool> -> bool
Parameters
- operand
- Type: Extreme.MathematicsVectorBoolean
A boolean vector.
Return Value
Type:
Boolean if at least one element of
operand is
;
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