Help for this page

Select Code to Download


  1. or download this
    sub deep_copy
    {
    ...
                    +{map{$_ => $self->deep_copy($this->{$_})} keys %$this
    +};
            }
    }
    
  2. or download this
    sub copy
    {
            my $self = shift;
            return $self->deep_copy($self);
    }