in reply to Re^2: hash slice ? No thanks, I'm about to return...
in thread hash slice ? No thanks, I'm about to return...

Depends. I often implicitly return the result of an operation that would obviously be useless in void context, as in

sub as_string { my $self = shift; join '-', $self->date; }

or the like.

Makeshifts last the longest.