in reply to Re: Re: Re: Dereferencing an array of hash references
in thread Dereferencing an array of hash references
Simpler, but not identical. Remember that when you say @{ $array_ref } you are making a copy of the array referenced by $array_ref. So your solution is certainly more efficient, in that you are accessing the original array and not making any copies, but it might be somewhat disastrous if you don't want to modify the original array.