Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Integerクラス > upto
upto(max) {|n| ... } -> Fixnum | Bignum
[permalink][rdoc]upto(max) -> Enumerator
self から max まで 1 ずつ増やしながら繰り返します。 self > max であれば何もしません。
例:
5.upto(10) {|i| print i, " " } # => 5 6 7 8 9 10
[SEE_ALSO] Integer#downto, Numeric#step, Integer#times