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   478105 use 5.006;
  4         15  
4 4     4   23 use strict;
  4         351  
  4         137  
5 4     4   25 use warnings;
  4         9  
  4         319  
6              
7 4     4   24 use base qw/Import::Export/;
  4         22  
  4         2248  
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   75347 our $VERSION = '0.09';
13 4         27 require XSLoader;
14 4         1855 XSLoader::load("Bijection::XS", $VERSION);
15 4         210 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__