Returns the result of a binary AND operation on self and i

assert 0x10u16 & 0x01u16 == 0u16

Property definitions

core $ UInt16 :: &
	# Returns the result of a binary AND operation on `self` and `i`
	#
	#     assert 0x10u16 & 0x01u16 == 0u16
	fun &(i: UInt16): UInt16 is intern
lib/core/fixed_ints.nit:443,2--446,35