Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: Moose - my new religion

by tobyink (Canon)
on Jan 08, 2012 at 12:49 UTC ( [id://946859]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub current_balance {
      my $self = shift;
    ...
      }
      return $self->{current_balance};
    }
    
  2. or download this
    has current_balance => (is => 'rw', isa => 'Num');
    
  3. or download this
    package DebuggingDB;
    use Moose;
    ...
    {
      before $method => sub { warn "$method was called" };
    }
    
  4. or download this
    package DebuggingDB;
    use Moose::Role;
    ...
    {
      before $method => sub { warn "$method was called" };
    }
    
  5. or download this
    use Moose::Util qw/apply_all_roles/;
    apply_all_roles('DB', 'DebuggingDB') if $ENV{DEBUG};
    
  6. or download this
    my $accounts  = DB->new(...);
    my $marketing = DB->new(...);
    
    use Moose::Util qw/apply_all_roles/;
    apply_all_roles($marketing, 'DebuggingDB') if $ENV{DEBUG};
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://946859]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-19 21:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found