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
    sub parameter {
       ...
       return NameValTuple->new( name => $name, val => $val );
    }
    
  3. or download this
    package objectA;
    
    ...
    }
    
    1;