You are actually concerned about speed but it's faster to run a short script without loading List::Util if the arrays being summed are tiny

Hm.

  1. constrained environment: I guess 600k might make a difference somewhere.

    Hard to see where though. Most phones have 4GB and even the original Raspberry Pi had 512MB.

  2. "faster ... without loading List::Util: Given WithListUtil.pl:
    #! perl -sl use List::Util qw[ sum ]; our $N //= 10; print sum( 1 .. $N );

    And WithoutListUtil.pl:

    #! perl -sl #use List::Util qw[ sum ]; our $N //= 10; my $t = 0; $t += $_ for 1 .. $N; print $t;

    Darned if I can find any significant difference for as few as 3 numbers to add. Pretty consistently 4-5/100ths for both to start perl, count the numbers and return to the prompt:

    [16:27:32.60] C:\test>for /l %i in (1,1,10) do WithListUtil.pl -N=3 [16:27:55.68] C:\test>WithListUtil.pl -N=3 [16:27:55.73] C:\test>WithListUtil.pl -N=3 [16:27:55.79] C:\test>WithListUtil.pl -N=3 [16:27:55.85] C:\test>WithListUtil.pl -N=3 [16:27:55.90] C:\test>WithListUtil.pl -N=3 [16:27:55.95] C:\test>WithListUtil.pl -N=3 [16:27:56.00] C:\test>WithListUtil.pl -N=3 [16:27:56.05] C:\test>WithListUtil.pl -N=3 [16:27:56.10] C:\test>WithListUtil.pl -N=3 [16:27:56.15] C:\test>WithListUtil.pl -N=3 [16:27:56.20] C:\test>for /l %i in (1,1,10) do WithoutListUtil.pl -N=3 [16:28:22.44] C:\test>WithoutListUtil.pl -N=3 [16:28:22.49] C:\test>WithoutListUtil.pl -N=3 [16:28:22.54] C:\test>WithoutListUtil.pl -N=3 [16:28:22.59] C:\test>WithoutListUtil.pl -N=3 [16:28:22.63] C:\test>WithoutListUtil.pl -N=3 [16:28:22.67] C:\test>WithoutListUtil.pl -N=3 [16:28:22.71] C:\test>WithoutListUtil.pl -N=3 [16:28:22.76] C:\test>WithoutListUtil.pl -N=3 [16:28:22.80] C:\test>WithoutListUtil.pl -N=3 [16:28:22.84] C:\test>WithoutListUtil.pl -N=3 [16:28:22.88] C:\test>

    It's hard to see the loading time of List::Util being a significant factor in any real code.

  3. XS isn't feasible so you're stuck with the PP version:

    I thought it came with the core for most distributions. I 'spose someone somewhere might be running a bastardized, cut-down version.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
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". The enemy of (IT) success is complexity.
In the absence of evidence, opinion is indistinguishable from prejudice. Suck that fhit

In reply to Re^4: Best way to sum an array? by BrowserUk
in thread Best way to sum an array? 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":



  • 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.