Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Short Refactoring Tip: let the object do it for you

by demerphq (Chancellor)
on May 19, 2003 at 22:49 UTC ( [id://259332]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ($po->status->name =~ /^(sent|pending|waiting|procratinating|delaye
    +d)$/i) {
    
  2. or download this
    my $status=$pos->status;
    if ($status->is('Pending')) {}
    if ($status->in(qw(sent pending waitning procrastinating delayed)) { }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-19 21:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found