elementwise logical 'and' operator
| C# | Visual Basic | Visual C++ |
public static ILLogicalArray and( ILArray<ulong> A, ILArray<ulong> B )
Public Shared Function and ( _ A As ILArray(Of ULong), _ B As ILArray(Of ULong) _ ) As ILLogicalArray
public: static ILLogicalArray^ and( ILArray<unsigned long long>^ A, ILArray<unsigned long long>^ 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.