Help for this page

Select Code to Download


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