Help for this page

Select Code to Download


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