Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > readlineライブラリ > Readline::HISTORYオブジェクト > empty?
empty? -> bool
[permalink][rdoc]ヒストリに格納された内容の数が 0 の場合は true を、 そうでない場合は false を返します。
例:
require "readline" p Readline::HISTORY.empty? #=> true Readline::HISTORY.push("foo", "bar", "baz") p Readline::HISTORY.empty? #=> false
[SEE_ALSO] Readline::HISTORY.length