Help for this page

Select Code to Download


  1. or download this
    sub which_obj
    {
        # examine the calling sub's 'wantarray':
        defined( (caller(1))[5] ) ? $_[0]->copy : $_[0]
    }
    
  2. or download this
    sub foo
    {
    ...
        my $obj = $self->which_obj;
        . . .
    }