Help for this page

Select Code to Download


  1. or download this
    sub CLEAR {
        my $self = shift;
    ...
        }
        $self = [ { } ];
    }
    
  2. or download this
    sub CLEAR {
      my $self = shift;
      @$self = ( {} );
    }
    
  3. or download this
    sub CLEAR {
      $_[0] = [ {} ];
    }
    
  4. or download this
    use Carp;
    
    ...
    push_hash %stash;
    # ...