• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H06-Jun-1999-11391

ChangesH A D06-Jun-1999353 1412

MANIFESTH A D06-Jun-199957 76

Makefile.PLH A D06-Jun-1999192 76

Permutor.pmH A D06-Jun-19992.5 KiB11345

READMEH A D06-Jun-1999783 2620

README

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