Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

FUNCTIONS

unique

set up a generator:

my $id_generator = unique(sub { int rand 1000 });

get a random unique id from this generator:

$id_generator->();