core :: Int :: &
self
i
assert 0x10 & 0x01 == 0
# Returns the result of a binary AND operation on `self` and `i` # # assert 0x10 & 0x01 == 0 fun &(i: Int): Int is intern `{ return self & i; `}