line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package List::BinarySearch::XS; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
63143
|
use 5.008000; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
129
|
|
4
|
4
|
|
|
4
|
|
17
|
use strict; |
|
4
|
|
|
|
|
4
|
|
|
4
|
|
|
|
|
125
|
|
5
|
4
|
|
|
4
|
|
13
|
use warnings; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
651
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
require Exporter; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our @ISA = qw(Exporter); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# Items to export into callers namespace by default. |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our @EXPORT = qw( ); ## no critic(export) |
14
|
|
|
|
|
|
|
our @EXPORT_OK = qw( binsearch binsearch_pos ); |
15
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( all => \@EXPORT_OK ); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
our $VERSION = '0.08'; |
19
|
|
|
|
|
|
|
our $XS_VERSION = $VERSION; |
20
|
|
|
|
|
|
|
require XSLoader; |
21
|
|
|
|
|
|
|
XSLoader::load('List::BinarySearch::XS', $VERSION); |
22
|
|
|
|
|
|
|
#$VERSION = eval $VERSION; ## no critic(eval) |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# Preloaded methods go here. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
28
|
|
|
|
|
|
|
__END__ |