Ruby 2.4.0 リファレンスマニュアル
ライブラリ一覧
組み込みライブラリ
Integerクラス
<
instance method Integer#<
self < other -> bool
[
permalink
][
rdoc
]
比較演算子。数値として小さいか判定します。
[PARAM] other:
比較対象の数値
[RETURN]
self よりも other が大きい場合 true を返します。そうでなければ false を返します。
例:
1 < 1 # => false 1 < 2 # => true