Thanks for all of your help! I got it with the module, but I am going to play with
some of that code now :). Thanks for all of your help.
Brian Seel
High School Intern
Micron Technology
[EMAIL PROTECTED]
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECT
of the Storable module, found in the CPAN.
HTH,
José.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 11:29 PM
To: [EMAIL PROTECTED]
Subject: Deep Copy
I am trying to make a deep copy in a complex data structure. I have a hash that has
On Wed, Jul 30, 2003 at 08:43:48AM +0200, [EMAIL PROTECTED] wrote:
> Less code:
>
> sub simpleClone($){
Even less[0]
use Storable qw(dclone);
my $dolly = dclone($dolly);
Storable is also fast and comes standard with 5.8.
--
Steve [0] actually quite a bit more, but you don't
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 30, 2003 8:33 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: RE: Deep Copy
see:
use strict;
use Data::Dumper;
sub simpleClone($){
my ($toClone) = @_;
my $Return;
if (ref($toClone) eq 'HASH
;{c} = 2;
print "a: ".Dumper($a);
print "b: ".Dumper($b);
print ":::\n";
This code is just for HASH and ARRAY and simpler SCALAR, but must be ease to
be extended
Thanks
Marcos Rebelo
-----Original Message-
From: [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
> I am trying to make a deep copy in a complex data structure. I have a hash that has
> all of its values as anonymous arrays. I need
> to copy the entire hash as a completely separate hash so that I can manipulate the
> data in the copy without affecting th
Use Clone.
http://search.cpan.org/author/RDF/Clone-0.13/Clone.pm
use Clone qw(clone);
my $newhash = clone($hashref);
Rob
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 5:29 PM
To: [EMAIL PROTECTED]
Subject: Deep Copy
I am trying to
I am trying to make a deep copy in a complex data structure. I have a hash that has
all of its values as anonymous arrays. I need to copy the entire hash as a completely
separate hash so that I can manipulate the data in the copy without affecting the
original data. Copying the key of the hash
#x27;; Nikola Janceski; Beginners (E-mail)
> Subject: RE: Deep copy
>
>
> Deep copy.
> I have a data structure (hashes of hashes)
> I want to make a real/deep copy of the values to store elsewhere.
> So when I change the values of one, the references don't
> point
Deep copy.
I have a data structure (hashes of hashes)
I want to make a real/deep copy of the values to store elsewhere.
So when I change the values of one, the references don't point to the same
values as the original data structure.
hence deep copy.
> -Original Message-
>
What you mean by deep copy ?
Be more clear :-)
José.
-Original Message-
From: Nikola Janceski [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 09, 2002 3:40 PM
To: Beginners (E-mail)
Subject: Deep copy
Hey anyone have the link handy that explained deep copying and had the simplest
Hey anyone have the link handy that explained deep copying and had the
simplest little code snip to make deep copies?
Nikola Janceski
We are such stuff as dreams are made on, rounded with a little sleep.
-- William Shakespeare
---
12 matches
Mail list logo