Help for this page

Select Code to Download


  1. or download this
        $results = $self->_Run( @_ ); # This is the XSUB
        return @$results       if( wantarray );
        return undef           if( scalar( @$results ) == 0 );
        return $$results[ 0 ]  if( scalar( @$results ) == 1 );
        return $results;
    
  2. or download this
        $results = $self->_Run( @_ ); # This is the XSUB
        return @$results;