in reply to Dereferencing a hash reference to a Hash of Arrays
So, in your case, you want to write something like
but you don't have an array, just a reference to one ($sort -> {column} being the reference). So, you would write:foreach (@array) { ... }
foreach (@{$sort -> {column}}) { ... }
Abigail
|
|---|