|
NAMEList::Group - Group a list of data structures to your specifications. SYNOPSIS use List::Group qw[group];
my @list = qw[cat dog cow rat];
my @group = group @list, cols => 2;
foreach my $row ( @group ) {
print "@{$row}\n";
}
DESCRIPTIONA simple module that currently allows you to group a list by columns or rows. Functions
AUTHORCasey West, <casey@geeknest.com>. COPYRIGHTCopyright (c) 2004 Casey West. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|