NAME
Algorithm::GenerateSequence - a sequence generator
SYNOPSIS
my $gen = Algorithm::GenerateSequence->new(
[qw( one two three )], [qw( hey bee )],
);
print $gen->next, "\n"; # onehey
print $gen->next, "\n"; # onebee
print $gen->next, "\n"; # twohey
print $gen->next, "\n"; # twobee
...
INSTALLATION
perl Build.PL
perl Build test
and if all goes well
perl Build install
HISTORY
What changed over the last 3 revisions
AUTHOR
Richard Clamp <richardc@unixbeard.net>
COPYRIGHT
Copyright (C) 2003 Richard Clamp. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 40:
You forgot a '=back' before '=head1'