public static UInt128 operator &(
UInt128 a,
UInt128 b
)
Public Shared Operator And (
a As UInt128,
b As UInt128
) As UInt128
public:
static UInt128 operator &(
UInt128 a,
UInt128 b
)
static let inline (&&&)
a : UInt128 *
b : UInt128 : UInt128
The bitwise AND of two arguements has a 1 in each position which is 1 in both arguments, and a 0 in all other positions.