Help for this page

Select Code to Download


  1. or download this
    sub foo {
      my ($self, $params) = __params({
        -a => '...',
      }, \@_);
      ...
      if ($params->{a}) {
    
  2. or download this
      foreach my $key (keys %$result) {
        my $tkey = $key; $tkey =~ s/^-//;
    ...
      }
      return $result;
    }