> This isn't a "Perl design decision" to be regretted; it's a programmer error to be avoided.

nope it's inconsistent, and any breach of orthogonality is a pain in the *ss and should at least be better documented.

> And since you appear to want undef to be "a legal value", there is no value that shift could return to indicate that the array is now empty.

So according to you, the demonstrated code using splice is a programmers error!

Of course shift should return an empty array which is false.

And of course ($x)=() would result in $x=undef without being true. This would be consistent with Perl's usual behavior.

DB<196> $x=42 => 42 DB<197> ( ($x) = () ) ? "$x" : "false" => "false" DB<198> $x => undef

Please read the code examples already given before replying.

Cheers Rolf

( addicted to the Perl Programming Language)

update

expanded code


In reply to Re^2: shift in list context buggy? by LanX
in thread shift in list context buggy? by LanX

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.