NAME

Algorithm::GenerateSequence - a sequence generator

SYNOPSIS

my $gen = Algorithm::GenerateSequence->new(
   [qw( one two three )], [qw( hey bee )],
);
print join(' ', $gen->next), "\n"; # one hey
print join(' ', $gen->next), "\n"; # one bee
print join(' ', $gen->next), "\n"; # two hey
print join(' ', $gen->next), "\n"; # two bee
...

INSTALLATION

perl Build.PL
perl Build test

and if all goes well

perl Build install

HISTORY

What changed over the last 3 revisions

0.02 Monday 15th September, 2003
Documentation fixes.
0.01 Monday 8th September, 2003
Initial CPAN release
=back

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 45:

You forgot a '=back' before '=head1'