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

assert 0x10u32 & 0x01u32 == 0u32

Property definitions

core $ UInt32 :: &
	# Returns the result of a binary AND operation on `self` and `i`
	#
	#     assert 0x10u32 & 0x01u32 == 0u32
	fun &(i: UInt32): UInt32 is intern
lib/core/fixed_ints.nit:685,2--688,35