るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.016秒)
トップページ > クエリ:range[x] > クエリ:exclude_end?[x]

別のキーワード

  1. socket mcast_exclude
  2. _builtin exclude_end?
  3. rake exclude
  4. rake clear_exclude

ライブラリ

クラス

検索結果

Range#exclude_end? -> bool (27113.0)

範囲オブジェクトが終端を含まないとき真を返します。

...範囲オブジェクトが終端を含まないとき真を返します。

//emlist[例][ruby]{
(1..5).exclude_end? # => false
(1...5).exclude_end? # => true
//}...