Ruby 4.1 リファレンスマニュアル
Ruby 4.1 リファレンスマニュアル
ライブラリ一覧
組み込みライブラリ
Integerクラス
~
instance method Integer#~
~ self -> Integer
Ruby 2.4.0 から
[
permalink
][
rdoc
][
edit
]
ビット演算子。否定を計算します。
p
~
1
# => -2
p
~
3
# => -4
p
~
-
4
# => 3