File Coverage

blib/lib/Data/HexConverter.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Data::HexConverter;
2 5     5   921898 use strict;
  5         12  
  5         254  
3 5     5   27 use warnings;
  5         17  
  5         387  
4 5     5   30 use XSLoader;
  5         12  
  5         164  
5 5     5   25 use Exporter qw(import);
  5         20  
  5         323  
6              
7             our $VERSION = '0.65';
8              
9 5     5   24 use XSLoader;
  5         10  
  5         544  
10             XSLoader::load(__PACKAGE__, $VERSION);
11              
12             our @ISA = qw(Exporter);
13             our @EXPORT = qw(
14             hex_to_binary
15             binary_to_hex
16             hex_to_binary_impl
17             binary_to_hex_impl
18             );
19              
20             our @EXPORT_OK = ();
21              
22             1;
23              
24             __END__