| Catmandu::IdGenerator::Mock(3pm) | User Contributed Perl Documentation | Catmandu::IdGenerator::Mock(3pm) |
Catmandu::IdGenerator::Mock - Generator of increasing identifiers
use Catmandu::IdGenerator::Mock;
my $x = Catmandu::IdGenerator::Mock->new(first_id => 10);
for (1..100) {
printf "id: %s\n" m $x->generate;
}
This Catmandu::IdGenerator generates identifiers based on the sequence of natural numbers.
| 2023-03-03 | perl v5.36.0 |