There's an additional problem. The result of evaluating sub { func( shift, @_ ) } is undefined because you're modifying and using the same variable more than once in an expression. You cannot know whether func() is going to receive a copy of everything in @_ preceded by an additional copy of $_[0] or whether it will give you $_[0] followed by everything remaining in @_.

func( shift @ary, @ary ); # Is one of the following but which one is not defined: func( $ary[0], @ary ); shift @ary; func( @ary ); shift @ary;

As a related note, you can't say = ( shift() . shift() ) because you can't know which shift() is going to happen first.


In reply to Re: open annoyance by diotalevi
in thread open annoyance by tlm

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.