in reply to Re: Break the foreach loop on count on 50 and then insert a new foreach loop
in thread Break the foreach loop on count on 50 and then insert a new foreach loop
Another possibility (also untested):
See splice. process_up_to_MAX_at_a_time() could also be made purely recursive... if you're into that sort of thing.use constant MAX => 50; sub process_up_to_MAX_at_a_time { my ($port, # comment @addresses, # ... ) = @_; while (@addresses > MAX) { my @sub_group = splice @addresses, 0, MAX; process_0_to_MAX($port, @sub_group); } process_0_to_MAX($port, @addresses); } sub process_0_to_MAX { ... }
BTW: Beware of comparisons like $#addresses >= 50 when checking array size: it's an off-by-one pitfall. It seems ok in the proces_no_more_than_50() example, but I find direct comparisons against an array (e.g., @addresses > 50) to be more intuitive and less error-prone in general. Also note that assignment to $[ (but don't do that!) changes the value of $#array (see perlvar). Evaluating @array in scalar context always yields the number of elements in the array. (The $[ special variable is deprecated as of Perl version 5.12; see the latest perlvar for its behavior after version 5.16. (Update: Better yet, check your local perldoc perlvar for its behavior on your system — and then don't touch it.))
Give a man a fish: <%-{-{-{-<
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Break the foreach loop on count on 50 and then insert a new foreach loop
by Discipulus (Canon) on Nov 12, 2015 at 12:20 UTC | |
|
Re^3: Break the foreach loop on count on 50 and then insert a new foreach loop
by iamnewbie (Novice) on Nov 16, 2015 at 06:00 UTC | |
|
Re^3: Break the foreach loop on count on 50 and then insert a new foreach loop
by iamnewbie (Novice) on Nov 13, 2015 at 06:19 UTC | |
by AnomalousMonk (Archbishop) on Nov 13, 2015 at 14:10 UTC |