method
reverse_each

Ruby latest stable (v2_5_5)
-
0 notes -
Class: Enumerable
reverse_each(*args)
public
Builds a temporary array and traverses that array in reverse order.
If no block is given, an enumerator is returned instead.
(1..3).reverse_each { |v| p v } produces: 3 2 1