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

assert 0x10i16 & 0x01i16 == 0i16

Property definitions

core $ Int16 :: &
	# Returns the result of a binary AND operation on `self` and `i`
	#
	#     assert 0x10i16 & 0x01i16 == 0i16
	fun &(i: Int16): Int16 is intern
lib/core/fixed_ints.nit:322,2--325,33