Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: array copy question

by Roger (Parson)
on Dec 08, 2003 at 22:49 UTC ( [id://313290]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @$ra_ret_save = @$ra_ret;
    
  2. or download this
    my $ra_ret_save = [ @$ra_ret ];
    
  3. or download this
    use strict;
    use warnings;
    ...
    
    my $ra_ret_save = [ @$ra_ret ];
    print Dumper($ra_ret_save);
    
  4. or download this
    perl 5.8.0
    ----------
    ...
              'c',
              'd'
            ];
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://313290]
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-04-24 03:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found