Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Use of shift in Ternary Operator

by hipowls (Curate)
on Mar 22, 2008 at 23:00 UTC ( [id://675692]=note: print w/replies, xml ) Need Help??


in reply to Use of shift in Ternary Operator

The problem is that ? is ambiguous, is it part of a ternery operator or the start of a ?? match? From Perl Regular Expressions Reference

?pattern? is like m/pattern/ but matches only once. No alternate delimiters can be used. Must be reset with reset().
puting () after shift resolves the ambiguity.

Update:To explain further, shift expects a single argument which is an expression that evaluates to an array. If no argument is provided it defaults to @_. When perl sees shift ? it doesn't know if you mean

shift(@_) ? 1: 2;
or something like
shift ?pattern? ? @a: @b;
the parentheses forces the first interpretation and shift defaults to using @_.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://675692]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (1)
As of 2024-04-23 16:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found