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