Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: Sharing Hash Question (containers not members)

by tye (Sage)
on Jul 05, 2012 at 14:29 UTC ( [id://980080]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    share ( $hash{$file}{start} ); # for pulling start time from file
    share ( $hash{$file}{stop} ); # for pulling stop time from file
    
  2. or download this
    $hash{$file} = &share({});
    share ( $hash{$file}{certain_row_type}->[$i] );
    $hash{$file}{certain_row_type}->[$i] = $line;
    
  3. or download this
        $hash{$file} = &share( {} );
        $hash{$file}{row_type} = &share( [] );
        $hash{$file}{row_type}[$i] = $line;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-03-29 13:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found