Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: Pearls (not really) of Perl programming

by ikegami (Patriarch)
on Nov 25, 2004 at 18:01 UTC ( [id://410437]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $flow_id = $data{partners}{$part_id}{flow};
    for my $wfref (@{$data{flows}{$flow_id}}) {
        #...
    }
    
  2. or download this
    my $partner = $data{partners};
    my $flow_id = $partner->{$part_id}{flow};
    ...
    for my $wfref (@$flows_ref) {
        #...
    }
    
  3. or download this
    my $flow_id = $data{partners}{$part_id}{flow};
    my $flows_ref = $data{flows}{$flow_id}};
    for my $wfref (@$flows_ref) {
        #...
    }
    
  4. or download this
    Change %{$data{flows   }} to just %flows.
    Change %{$data{partners}} to just %partners.
    

Log In?
Username:
Password:

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

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

    No recent polls found