I'm looking at the following code snippet:
my @ret = <someMethod>
return (undef) if( $DB_ERROR );
return (undef) unless ($#ret >= 0);
Does $# just give you a count of elements in a array?
|
I'm looking at the following code snippet:
Does |
|||||||||
|
|
And, as noted by Barry Brown, an empty array gives -1. To get the length you can use the array in scalar context:
|
||||
|
|
|
edg is correct, but the original code is unnecessarily obtuse. In most cases,
When is $#ret < 0? When it's -1. A $#ret of -1 is an array of length 0. So the above can be written much more simply as...
But you can't have a negative length array, so...
And == is in scalar context, so that "scalar" is redundant...
But that's just a wordy way of saying "if
Which I think for simple statement modifiers is better expressed with unless.
Isn't that easier to follow? As a final side-note,
|
|||||||||
|
|
Be aware that the $#array expression will return -1 when array has zero elements. |
|||
|
|
|
To summarize everyone else, that code is much more legible if written like this:
|
|||
|
|