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