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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I can't really answer "why" Larry and crew chose the things they did. But, I might be able to shed a little light.

Let's look at your examples

scalar((1,3,5)) #evaluates to the last element of the list --- 5 if( (5,3,0) ) #evaluates to the last element of the list --- 0, +thus evaluates to false $val=(5,6,7); #evaluates to the last element of the list --- 7

These use the comma operator ',' in scalar context, returning whatever is on the right of the comma. In the case of multiple commas, you get the value of the rightmost expression.

There is no list here at all. You just think there is because you have been trained to think of the comma as meaning 'list'.

$ret = (($i, $j, $k)=(5,6,8,9)); #evaluates to the number of el +ements on the right side list --- 4 if( ($k, $v) = ( 1, 0 ) ) #evaluates to the number of el +ements on the right side list --- 2, thus evaluates to TRUE while ( ($key, $value) = each %map ) #still evaluates to the number + of elements on the right side hash

Here we actually have some lists, and thus actual list assignment.

List assignment is scalar context gives us the size of the list that was passed into the assignment. So here $foo = ($bar, $baz) = (1..50); $foo is equal to 50.

In list context you get the contents of the resulting list. So  @foo = () = (1..50) leaves @foo empty.

Why is it this way? I don't know. But I can tell you that getting the size of the assigned from list can be useful.

my $count_foo = () = /foo/g;

Written a bit more compactly, that construct gets called "the goatse operator": $foo =()= /foo/g; If you don't get the joke, don't look it up.

I hope this helps a bit.


TGI says moo


In reply to Re: list assignment to list in scalar context by TGI
in thread list assignment to list in scalar context by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-04-24 01:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found