in reply to Re: key and values help
in thread key and values help
I found this in perloppush @{$groups{ +shift( @items ) }}, shift( @items );
Unary "+" has no effect whatsoever, even on strings. It is useful syntactically for separating a function name from a parenthesized expression that would otherwise be interpreted as the complete list of function arguments.
Is that what you were doing there? Making sure Perl knew that the return value from shift( @items ) was not part of an argument list?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: key and values help
by davido (Cardinal) on Aug 07, 2004 at 14:26 UTC |