File Coverage

blib/lib/Data/HashMap/I16A.pm
Criterion Covered Total %
statement 25 25 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 29 29 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::I16A;
2 3     3   103169 use strict;
  3         6  
  3         124  
3 3     3   16 use warnings;
  3         11  
  3         145  
4 3     3   441 use Data::HashMap;
  3         4  
  3         731  
5             our $VERSION = '0.01';
6              
7             sub import {
8 3     3   37 $^H{"Data::HashMap::I16A/hm_i16a_put"} = 1;
9 3         11 $^H{"Data::HashMap::I16A/hm_i16a_get"} = 1;
10 3         7 $^H{"Data::HashMap::I16A/hm_i16a_remove"} = 1;
11 3         8 $^H{"Data::HashMap::I16A/hm_i16a_exists"} = 1;
12 3         7 $^H{"Data::HashMap::I16A/hm_i16a_size"} = 1;
13 3         8 $^H{"Data::HashMap::I16A/hm_i16a_keys"} = 1;
14 3         6 $^H{"Data::HashMap::I16A/hm_i16a_values"} = 1;
15 3         8 $^H{"Data::HashMap::I16A/hm_i16a_items"} = 1;
16 3         6 $^H{"Data::HashMap::I16A/hm_i16a_max_size"} = 1;
17 3         6 $^H{"Data::HashMap::I16A/hm_i16a_ttl"} = 1;
18 3         8 $^H{"Data::HashMap::I16A/hm_i16a_each"} = 1;
19 3         7 $^H{"Data::HashMap::I16A/hm_i16a_iter_reset"} = 1;
20 3         7 $^H{"Data::HashMap::I16A/hm_i16a_clear"} = 1;
21 3         7 $^H{"Data::HashMap::I16A/hm_i16a_to_hash"} = 1;
22 3         6 $^H{"Data::HashMap::I16A/hm_i16a_put_ttl"} = 1;
23 3         43437 $^H{"Data::HashMap::I16A/hm_i16a_get_or_set"} = 1;
24             }
25              
26             1;