instance method Integer#~

~ self -> Integer[permalink][rdoc][edit]

ビット演算子。否定を計算します。


~1  # => -2
~3  # => -4
~-4 # => 3