Help for this page

Select Code to Download


  1. or download this
        # Prepare inheritance
        unless ( $caller->isa($self) ) {
            no strict 'refs';
            push @{"$caller\::ISA"}, $self;
        }
    
  2. or download this
    sub _run_create {
        my ( $me, $class, $results ) = @_;
    ...
        }
        return $class->create($cols);
    }