Help for this page

Select Code to Download


  1. or download this
    use Storable qw(dclone);
    my $copy = dclone($some_ref);
    
  2. or download this
    use Clone qw(clone);
    my $copy = clone($some_ref);
    
  3. or download this
    @copy = thaw freeze $hashref