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

assert 0x10i8 & 0x01i8 == 0i8

Property definitions

core $ Int8 :: &
	# Returns the result of a binary AND operation on `self` and `i`
	#
	#     assert 0x10i8 & 0x01i8 == 0i8
	fun &(i: Int8): Int8 is intern
lib/core/fixed_ints.nit:201,2--204,31