Class-Tie-InsideOut

 view release on metacpan or  search on metacpan

lib/Tie/InsideOut.pm  view on Meta::CPAN


sub TIEHASH {
  my $class  = shift || __PACKAGE__;

  my $scalar;
  my $self  = \$scalar;
  bless $self, $class;

  my $id    = $self->_get_id;
  {
    my $caller = shift || (caller)[0];
    no strict 'refs';
    $NameSpaces{$id} = $caller;
  }
  $self->CLEAR;

  return $self;
}

BEGIN {
  *new = \&TIEHASH;



( run in 0.578 second using v1.01-cache-2.11-cpan-a3c8064c92c )