Help for this page

Select Code to Download


  1. or download this
    has 'secret_name' => ( init_arg => 'public_name', ... );
    
  2. or download this
    has 'secret_name' => ( init_arg => undef, ... );
    
  3. or download this
    package My::Object;
    use Moose;
    ...
        my ($self, $params) = @_;
        $self->foo( $params->{bar} );
    }
    
  4. or download this
    package Queue;
    use Moose;
    ...
            'dequeue' => 'pop'
        }
    );