(no title)
odc | 4 months ago
So when you see
$a->[2]{"bar"}
then $a is an array reference where each item is a hashmap. But with $a->[2]->{"bar"}
then $a is an array reference where each item is a reference to a hashmap.odc | 4 months ago
So when you see
$a->[2]{"bar"}
then $a is an array reference where each item is a hashmap. But with $a->[2]->{"bar"}
then $a is an array reference where each item is a reference to a hashmap.
zaucker|4 months ago