Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Recursive copier

by btrott (Parson)
on Jun 18, 2001 at 21:48 UTC ( [id://89375]=note: print w/replies, xml ) Need Help??


in reply to Recursive copier

You could get the effect of a deep copy by serializing and deserializing a data structure, using some method of serialization. Eg. Data::Dumper or Storable.

Or you could also investigate the Clone module, which I've not seen before but which is on CPAN. It looks like it should do what you want:

use Clone qw(clone); my $b = clone($a);

Log In?
Username:
Password:

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

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

    No recent polls found