Help for this page

Select Code to Download


  1. or download this
    my $object = Class->new();
    my $self = \$object;
    
  2. or download this
    $object->restore();
    
    ...
        my $self = shift;
        $self = restore();
    }
    
  3. or download this
    sub deserialize {
        my $class = shift;
    ...
    sub restore_me {
        $_[0] = $_[0]->restore();
    }