Help for this page

Select Code to Download


  1. or download this
    my %obj_cache;
    
    ...
        my $params = $class->BUILDARGS(@args);
        $obj_cache{$params->{thingy}} ||= $class->_new($params);
    };
    
  2. or download this
    sub instance { shift->new(@_) }