NAME
Clone - Perl extension for a recurrsive copy of nested objects.
SYNOPSIS
use Clone;
push @Package::A::ISA, 'Clone';
$a = new Package::A;
$b = $a->clone;
# or
use Clone qw(clone);
$b = clone($a,1);
DESCRIPTION
The Clone module provides a clone function for making recursive copies of nested hash and array objects. It was written as an XSUB for speed and can be called as a function or a method.
AUTHOR
Ray Finch, ray@classmates.com
SEE ALSO
perl(1).