Sorry that's too complicated for me, TL;DR

> I have to understand what (LIST) means in the documentation.

According to the docs cited in

List's terminology and Parentheses in Perl

<updated>

Uppercase "LIST" in perldocs is a argument placeholder for any code ...

For instance from the docs for print ...

print LIST; means that ...

</updated>

> To understand this:

> > The scalar comma operator returns the last element.

> I must understand in which list it is the last element.

Comma separated lists (sic)

Please compare (updated)

# --- list assignments @a = (1,2,3); # list comma @a = (1..3); # list range ($a) = @a; # deconstruction => $a==1 # --- scalar assignments $a = (1,2,3); # scalar comma $a = (1..3); # flip flop operator ... Oo oops! $a = @a; # scalar @a == length

The parens on RHS only do grouping here they do not create a list. Hence the context is propagated to the operators , and ..

@a = and (...)= are "list assignment" imposing "list context".

The range 1..3 returns the list value 1,2,3 in list context only.

You have to think of the whole statement as an op-tree...

With ...

If that's not clear enough please show a short code exemplifying your problem.

HTH

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

update

you may want to play around yourself with B::Deparse and B::Concise to experiment around with the snippets shown

perl -MO=Deparse,-p -e "CODE"

and

perl -MO=Concise -e "CODE"


In reply to Examples for "LIST", "list context", "list value", "list assigment", "list operator" by LanX
in thread Split does not behave like a subroutine by bojinlund

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.