Help for this page

Select Code to Download


  1. or download this
    my $array_ref = $hash_ref->{$object->method};
    push @$array_ref, "something";
    
  2. or download this
    push @($hash_ref->{$object->method}), "something";