| Algorithm-GenerateSequence documentation | view source | Contained in the Algorithm-GenerateSequence distribution. |
Algorithm::GenerateSequence - a sequence generator
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
...
perl Build.PL perl Build test
and if all goes well
perl Build install
What changed over the last 3 revisions
Documentation fixes.
Initial CPAN release =back
Richard Clamp <richardc@unixbeard.net>
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.
| Algorithm-GenerateSequence documentation | view source | Contained in the Algorithm-GenerateSequence distribution. |