Ruby 1.9.2 リファレンスマニュアル > ライブラリ一覧 > library _builtin > class Integer > downto

instance method Integer#downto

downto(min) {|n| ... } -> self
downto(min) -> Enumerable::Enumerator

self から min まで 1 ずつ減らしながらブロックを繰り返し実行します。 self < min であれば何もしません。

[PARAM] min:
数値
[RETURN]
self を返します。

[SEE_ALSO] Integer#upto, Integer#step, Integer#times