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