in reply to Re: Summing Variables in foreach loop
in thread Summing Variables in foreach loop
A more normal way to use reduce would be to use the + operator in there, not +=. Using += could give the impression that the variable $a can be usefully modified within the block.
say reduce { $a + count_zeros($cgs,$b) } 0, <DATA>;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Summing Variables in foreach loop
by ikegami (Patriarch) on Jan 31, 2014 at 17:29 UTC |