Help for this page

Select Code to Download


  1. or download this
    $a_ref_to_the_object = Class->new;
    
  2. or download this
    %$a_ref_to_the_object = %{Class->new};
    
  3. or download this
    sub retarget_ref {
        my ($old, $new) = @_;
    ...
        eval { @$old = @$new }; $@ or return;
        eval { %$old = %$new };
    }