Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^4: Mutator chaining considered harmful

by Anonymous Monk
on Dec 29, 2004 at 14:19 UTC ( [id://417986]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $label_formatting = $button->child->font_style;
    
  2. or download this
    $window->title('foo')->border(20);
    
  3. or download this
    eval {$window->title('foo')->border(20)};
    if ($@) {...do something...}
    
  4. or download this
    eval {$window->title('foo')};
    if ($@) {....}
    else {eval {$window->border(20)}
          if ($@) {....}}
    
  5. or download this
    $obj->foo($obj->bar($baz))
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-18 22:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found