Help for this page

Select Code to Download


  1. or download this
    my $spec = {
        'Parameters' => [
    ...
        ],  
        'Response' => 'scalar',
    };
    
  2. or download this
    my @params = $thing->{'Parameters'};
    
    ...
      my $spec = $params[$index + 1];
      # do something from here...
    }
    
  3. or download this
    define_method 'foo' => {
      'Parameters' => [
    ...
        },
      ]
    };