logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catmandu::IdGenerator::UUID - Generator of UUID identifiers

Description

       This Catmandu::IdGenerator generates identifiers based on the Universally Unique Identifier (UUID) v1
       standard. A UUID string is a 128 bit number represented by lowercase hexadecimal digits such as
       "de305d54-75b4-431b-adb2-eb6b9e546014".

perl v5.40.0                                       2025-01-17                   Catmandu::IdGenerator::UUID(3pm)

Name

       Catmandu::IdGenerator::UUID - Generator of UUID identifiers

Synopsis

           use Catmandu::IdGenerator::UUID;

           my $x = Catmandu::IdGenerator::UUID->new;

           for (1..100) {
              printf "id: %s\n" , $x->generate;
           }

See Also