I can't help but wonder why you would require the caller to pass a parameter you're never going to use?

If there is a good reason, (and I cannot think of one), then given the not insignificant difference in performance:

$a='a'x1e6; $b=12345; cmpthese -1,{ a=>q[ sub{ my( undef, $x ) = @_ }->( $a, $b ) ], b=>q[ sub{ my $x = $_[1] }->( $a, $b ) ], c=>q[ sub{ my( $unused, $x ); }->( $a, $b ) ], };; Rate a b c a 1703708/s -- -19% -20% b 2107186/s 24% -- -1% c 2129207/s 25% 1% --

I'd be asking myself if I thought that assignment to undef was any clearer than assignment to a variable called $unused?


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

In reply to Re: Is undef list assignment a no-op? by BrowserUk
in thread Is undef list assignment a no-op? by repellent

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.