this isn't something you should use recursion for
s/should/need to/
You also don’t need a module. Here is a solution using a stateful subroutine as an iterator:
#! perl use strict; use warnings; my @list = ('a' .. 'z'); my $size = 5; _array_chunk_it($size, @list); while (my @chunk = _array_chunk_it()) { print "Array chunk of $size =\n", join("\n", @chunk), "\n\n"; } { my ($array, $count); sub _array_chunk_it { my @chunk; if (@_) { $count = shift; $array = [ @_ ]; } else { for (1 .. $count) { push(@chunk, shift @$array) if @$array; } } return @chunk; } }
(With newer versions of Perl, this can be rewritten using state.)
TMTOWTDI :-)
Update: ++Anonymous Monk for the superior version using a closure, below.
Athanasius <°(((>< contra mundum
In reply to Re^2: How to return a list using recursion?
by Athanasius
in thread How to return a list using recursion?
by dr.jekyllandme
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |