http://qs321.pair.com?node_id=821276


in reply to Re^3: Challenge: Sorting Sums Of Sorted Series
in thread Challenge: Sorting Sums Of Sorted Series

ikegami,
Notice I didn't say blokhead was wrong. I said should because it would make it obvious. Not everyone has a grasp of how things are implemented in all versions of perl. In fact, this is what perlop has to say on the matter.

In list context, it returns a list of values counting (up by ones) from the left value to the right value.....In the current implementation, no temporary array is created when the range operator is used as the expression in foreach loops, but older versions of Perl might burn a lot of memory when you write something like this:

Again, someone that doesn't follow perl closely might think - what version would blokhead's solution be breaking the rules or will this continue to be correct in the next version. Making it obvious eliminates any casual observer confusion.

Cheers - L~R

  • Comment on Re^4: Challenge: Sorting Sums Of Sorted Series

Replies are listed 'Best First'.
Re^5: Challenge: Sorting Sums Of Sorted Series
by ikegami (Patriarch) on Feb 03, 2010 at 22:18 UTC
    I'm not concerned about about the behaviour of versions of Perl before 5.6, and I think very very few are in the other camp, so I think that warning shouldn't be in the docs anymore. I find for EXPR..EXPR much clearer than the alternative, so I disagree with your opinion that he should switch to the alternative.