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

assert 0x10u8 & 0x01u8 == 0u8

Property definitions

core :: math $ Byte :: &
	# Returns the result of a binary AND operation on `self` and `i`
	#
	#     assert 0x10u8 & 0x01u8 == 0u8
	fun &(i: Byte): Byte is intern `{ return self & i; `}
lib/core/math.nit:185,2--188,54