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

assert 0x10i32 & 0x01i32 == 0i32

Property definitions

core $ Int32 :: &
	# Returns the result of a binary AND operation on `self` and `i`
	#
	#     assert 0x10i32 & 0x01i32 == 0i32
	fun &(i: Int32): Int32 is intern
lib/core/fixed_ints.nit:564,2--567,33