Help for this page

Select Code to Download


  1. or download this
    ( ..., hshAgg => %hshAgg )
    ...
    return $self->{hshAgg};
    ...
    $self->{hshAgg} => %hshAgg;
    
  2. or download this
    hshAgg => \%hshAgg
    ...
    return %{$self->{hshAgg}};
    ...
    $self->{hshAgg} => \%hshAgg;