in reply to Re: array looping with foreach (try Array::Each::Override)
in thread array looping with foreach
I'm a little confused by the point of Array::Each::Override
Being able to override each to use it on an array is nice and surely useful at times. But at the same time you're hurting the built in each performance on hashes (which you're likely to be doing more of in your code to start with). The values override adds nothing to working with arrays, and again hurts the built in values performance on hashes. The keys override doesn't appear to add much in the way of usefulness either again with the built in keys performance hit.
But I'm running off topic...