Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^5: Quickly detecting variable writes

by sfink (Deacon)
on Jan 08, 2007 at 06:47 UTC ( [id://593484]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    onTime {
      our $pos : Attr('position');
    ...
        $pos->[0]++;
      }
    }
    
  2. or download this
    onTime {
      our $x : Attr('something');
    ...
      }
      @fixups = ();
    }
    
  3. or download this
    onTime {
      my $attr = $NODE->getAttr("something");
    ...
      $attr->setValue($val);
      $attr->doCallbacks();
    }
    
  4. or download this
    onTime {
      my $attr = $NODE->getAttr("something");
    ...
        $attr->doCallbacks();
      }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-20 00:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found