in reply to How to best pass on the context / wantarray?
BrowserUK's response is good, I guess, but I want to offer the following because it uses an interesting but rarely used feature of perl.
Then you can:sub which_obj { # examine the calling sub's 'wantarray': defined( (caller(1))[5] ) ? $_[0]->copy : $_[0] }
sub foo { . . . my $obj = $self->which_obj; . . . }
|
|---|