exclude_end? -> bool
[permalink][rdoc][edit]-
範囲オブジェクトが終端を含まないとき真を返します。
(1..5).exclude_end? # => false (1...5).exclude_end? # => true
exclude_end? -> bool
[permalink][rdoc][edit]範囲オブジェクトが終端を含まないとき真を返します。
(1..5).exclude_end? # => false
(1...5).exclude_end? # => true