| Server IP : 185.125.27.153 / Your IP : 216.73.216.193 Web Server : Apache System : Linux d6e05399ed1f11695f7c56648ed78c66 6.1.0-0.deb11.50-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.176-1~deb11u1 (2026-07-02) x86_64 User : uid174255 ( 174255) PHP Version : 8.3.31 Disable Function : exec,passthru,pcntl_exec,popen,proc_open,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/doc/libbit-vector-perl/examples/ |
Upload File : |
#!/usr/bin/perl
use Benchmark;
use Bit::Vector::String;
$v = Bit::Vector->new(1024);
$v->Primes();
$s = '';
$b = $v->to_Bin();
$o = $v->to_Oct();
$h = $v->to_Hex();
sub to_Bin
{
$s = $v->to_Bin();
}
sub to_Oct
{
$s = $v->to_Oct();
}
sub to_Hex
{
$s = $v->to_Hex();
}
sub from_Bin
{
$v->from_Bin($b);
}
sub from_Oct
{
$v->from_Oct($o);
}
sub from_Hex
{
$v->from_Hex($h);
}
timethese
(
10000,
{
to_Bin => \&to_Bin,
to_Oct => \&to_Oct,
to_Hex => \&to_Hex
}
);
timethese
(
10000,
{
from_Bin => \&from_Bin,
from_Oct => \&from_Oct,
from_Hex => \&from_Hex
}
);
__END__