- or download this
return { my %row = %{$self->[1]} };
- or download this
return +{ %{$self->[1]} };
#or
...
#or
my %row = %{$self->[1]};
return \%row;
- or download this
return { %{$self->[1]} };
# {} interpretted as a block
...
return \( my %row = %{$self->[1]} );
# flattens hash and returns ref to each item