Hi, On May 9, 9:27 am, kstubs <[email protected]> wrote: > OK TJ, I understand what to do, but is there a way to iterate backwards > through the enumeration? I guess I can get the size, and iterate over it > with a decremental index value.
I'd use `Enumerable#toArray` and then either reverse it or loop through it backward. (`Array` has a `reverse` function.) -- T.J. :-) -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
