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

Re: Checking for Presence of Optional Attribute in Moose Object

by FalseVinylShrub (Chaplain)
on Jul 04, 2010 at 04:41 UTC ( [id://847954]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    has 'age'  => ( 
      is  => 'ro',
    ...
      predicate => 'has_age'
    );
    if ($self->has_age) { ... }
    
  2. or download this
    has 'age'  => ( 
      is  => 'ro',
      isa => 'Str',
      default => '',
    );
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-03-28 18:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found