Thread (3 messages) flat view 3 messages, 3 authors, 2016-06-15

Re: [PATCH] Git.pm: Don't return 'undef' in vector context.

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:43:51

Dan Zwell [off-list ref] writes:
Previously, the Git->repository()->config('non-existent.key')
evaluated to as true in a vector context. Return an empty list
instead.
---
I don't know whether this breaks anything, because I don't use most of
the git perl scripts. I can't imagine that there is a script that
relies on the fact that config('non-existent.key') actually returns
(''), in an array context. Is this a reasonable change?
I did not examine the callers but my gut feeling is that it
would be simpler and cleaner to always return () without
checking the context.  In scalar context:

	sub null {
        	...
                return ();
	}
	my $scalar = null();

would assign undef to $scalar anyway.

I generally try to stay away from functions that changes their
return values depending on the context, because they tend to
make reading the callers to find bugs more difficult.  An
exception is a function that tries to mimic a built-in operator,
because reading the callers to such a function, as long as it is
clear which built-in the function is imitating, can apply the
same knowledge on how the callee would behave you already have
by knowing Perl itself.

The same thing can be said about functions with prototypes to
force certain context on the caller's side.  Avoid it unless
there is a good reason.

Maybe it is just me, but that's my reaction.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help