Ruby 1.9.2 リファレンスマニュアル > ライブラリ一覧 > library _builtin > class Integer > downto
downto(min) {|n| ... } -> self
downto(min) -> Enumerable::Enumerator
self から min まで 1 ずつ減らしながらブロックを繰り返し実行します。 self < min であれば何もしません。
[SEE_ALSO] Integer#upto, Integer#step, Integer#times