Vector.And Method
            Computes the logical conjunction of two boolean vectors.
            
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
    C#
    
 
 
A vector whose elements are the conjunction ('and') of the corresponding elements of left and right.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Vector<bool> And(
	Vector<bool> left,
	Vector<bool> right
)Parameters
Return Value
Vector<Boolean>A vector whose elements are the conjunction ('and') of the corresponding elements of left and right.
Exceptions
| Argument | left is null -or- right is null | 
| Dimension | left and right do not have the same length. |