elementwise logical 'and' operator
| C# | Visual Basic | Visual C++ |
public static ILLogicalArray and( ILArray<uint> A, ILArray<uint> B )
Public Shared Function and ( _ A As ILArray(Of UInteger), _ B As ILArray(Of UInteger) _ ) As ILLogicalArray
public: static ILLogicalArray^ and( ILArray<unsigned int>^ A, ILArray<unsigned int>^ B )
logical array of same size as A and B, elements with result of logical 'and'.
A and B must have the same size or either one may be scalar. If one of A or B is empty,
an empty array of the same inner element type is returned.