1Here's a brief summary of the documentation which comes with this
2module. See the module itself for further details.
3
4NAME
5       List::Permutor - Process all of the possible permutations
6       of a list of items.
7
8SYNOPSIS
9         use List::Permutor;
10         my $perm = new List::Permutor qw/ fred barney betty /;
11         while (my @set = $perm->next) {
12             print "One order is @set.\n";
13         }
14
15AUTHOR
16       Tom Phoenix <rootbeer@redcat.com>
17
18INSTALLATION
19       See the instructions which came with your Perl distribution.
20       The current implementation uses no XS code, so this release
21       should be compatible with all systems.
22
23VERSION
24       Currently version 0.022 or so, so some features (or even the
25       module's name!) may change in the future.
26