Returns the 1's complement of self

assert ~0x2F == -48

Property definitions

core :: math $ Int :: unary ~
	# Returns the 1's complement of `self`
	#
	#     assert ~0x2F == -48
	fun ~: Int `{ return ~self; `}
lib/core/math.nit:82,2--85,31