Help for this page

Select Code to Download


  1. or download this
    sub parameter {
       ...
       return map { NameValTuple->new( name => $_, val => $rv{$_} } keys(%
    +rv);
    }
    
  2. or download this
    print $_->{name}, ': ', $_->{val}, "\n" for $objA->parameter( 'a.x' );
    
  3. or download this
    sub parameter {
       ...
       return map { +{ name => $_, val => $rv{$_} } } keys(%rv);
    }