Returns the 1's complement of self

assert ~0x2Fu8 == 0xD0u8

Property definitions

core :: math $ Byte :: unary ~
	# Returns the 1's complement of `self`
	#
	#     assert ~0x2Fu8 == 0xD0u8
	fun ~: Byte `{ return ~self; `}
lib/core/math.nit:200,2--203,32