10.10.3. Discussion
A return without an argument means:
sub empty_retval {
return ( wantarray ? ( ) : undef );
}
You can't use just return
undef, because in list context you will get a list
of one value: undef. If your caller says:
if (@a = yourfunc( )) { ... }
then the "error" condition will be perceived as true because
@a will be assigned (undef) and
then evaluated in scalar context. This yields 1,
the number of elements assigned to @a, which is
true. You could use the wantarray function to see
what context you were called in, but a bare return
is a clear and tidy solution that always works:
unless ($a = sfunc( )) { die "sfunc failed" }
unless (@a = afunc( )) { die "afunc failed" }
unless (%a = hfunc( )) { die "hfunc failed" }