Acme-MyPeek
view release on metacpan or search on metacpan
lib/Acme/MyPeek.pm view on Meta::CPAN
sub lv { $last_val; }
sub highval {
my ($ok) = @_;
my $x = 1;
my $f = 1;
for (1..100) {
my $y = $x * 10;
unless ($ok->($y)) {
$f = 0;
last;
}
$x = $y;
}
$last_val = $x;
return -1 if $f;
my $r = $x;
for (1..1000) {
my $y = $x + $r;
unless ($ok->($y)) {
if ($r <= 1) {
$r = 0;
last;
}
$r /= 10;
next;
}
$x += $r;
}
$last_val = $x;
return -2 if $r;
return $x;
}
1;
__END__
=head1 NAME
Acme::MyPeek - Peek into the internal number representation
=head1 SYNOPSIS
use Acme::MyPeek;
print "no of bits integers..: ", log(hi) / log(2), "\n";
print "no of bits floats ...: ", log(hd) / log(2), "\n";
print "last val.............: ", lv, "\n";
print "data type for int....: ", dt(3), "\n";
print "data type for float..: ", dt(3.1), "\n";
print "data type for char...: ", dt('z'), "\n";
=head1 AUTHOR
Klaus Eichner <klaus03@gmail.com>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2009-2013 by Klaus Eichner
All rights reserved. This program is free software; you can redistribute
it and/or modify it under the terms of the artistic license 2.0,
see http://www.opensource.org/licenses/artistic-license-2.0.php
=cut
( run in 1.424 second using v1.01-cache-2.11-cpan-ad19def0cd9 )