Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: So what is an array slice anyway?

by revdiablo (Prior)
on Aug 26, 2004 at 05:37 UTC ( [id://385915]=note: print w/replies, xml ) Need Help??


in reply to Re: So what is an array slice anyway?
in thread So what is an array slice anyway?

lists and arrays ... return different things in scalar context.

Actually, there is no such thing as a list in scalar context. What you describe is the behavior of the comma operator in scalar context. There never is a list.

Update: this is explained in perldoc -q "between a list". Incidentally, it is nearly exactly the same as what I said -- I must have subconsciously memorized the FAQ entry. :-)

It might be interesting to note that you can see this in action with B::Deparse, e.g.:

$ perl -MO=Deparse -e 'print scalar (2, 5, 7, 9);' print scalar('???', '???', '???', 9); -e syntax OK

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-24 18:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found