Algorithm-Verhoeff
view release on metacpan or search on metacpan
lib/Algorithm/Verhoeff.pm view on Meta::CPAN
=head1 WARNING
Both functions convert their argument to a string internally. This will break for large (<32 bit)numbers
due to Perl representing them in standard form when stringified. To get round this, either pass the number as a string to
begin with, or use the bignum module in your program.
Thus:
my $num = 57382957482395748329574923; # Big number!
verhoeff_get($num); # Fatal error unless program uses bignum module.
But:
my $num = '57382957482395748329574923'; # Long string!
verhoeff_get($num); # Works fine.
=head1 SEE ALSO
L<bignum>
( run in 0.682 second using v1.01-cache-2.11-cpan-65fba6d93b7 )