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