File Coverage

blib/lib/Bijection/XS.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 Bijection::XS;
2              
3 4     4   372619 use 5.006;
  4         14  
4 4     4   19 use strict;
  4         40  
  4         116  
5 4     4   26 use warnings;
  4         17  
  4         216  
6              
7 4     4   20 use base qw/Import::Export/;
  4         7  
  4         1933  
8              
9             our %EX = (biject => [qw/all main/], inverse => [qw/all main/], bijection_set => [qw/all set/], offset_set => [qw/all set/]);
10              
11             BEGIN {
12 4     4   73325 our $VERSION = '0.10';
13 4         26 require XSLoader;
14 4         1894 XSLoader::load("Bijection::XS", $VERSION);
15 4         213 bijection_set(qw/b c d f g h j k l m n p q r s t v w x y z B C D F G H J K L M N P Q R S T V W X Y Z 0 1 2 3 4 5 6 7 8 9/);
16             }
17              
18             1;
19              
20             __END__