instance method Integer#~

~ self -> Integer[permalink][rdoc]

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

例:

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