Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

references quick reference (Re: push)

by tye (Sage)
on Jan 31, 2001 at 00:09 UTC ( [id://55329]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        $scalar      ${$sRef}
        @array       @{$aRef}
    ...
        %hash        %{$hRef}
        $hash{KEY}   ${$hRef}{KEY}
        @hash{@list} @{$hRef}{@list}
    
  2. or download this
        $scalar      $$sRef
        @array       @$aRef
    ...
        %hash        %$hRef
        $hash{KEY}   $$hRef{KEY}
        @hash{@list} @$hRef{@list}
    
  3. or download this
        $array[0]    $aRef->[0]
        $hash{KEY}   $hRef->{KEY}
    
  4. or download this
        ${$aRef->[0]}[1]    $aRef->[0]->[1]   $aRef->[0][1]
        ${$aRef->[0]}{KEY}  $aRef->[0]->{KEY} $aRef->[0]{KEY}
        ${$hRef->{KEY}}[1]  $hRef->{KEY}->[1] $hRef->{KEY}[1]
        ${$hRef->{A}}{B}    $hRef->{A}->{B}   $hRef->{A}{B}
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-23 07:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found