File Coverage

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


line stmt bran cond sub pod time code
1             package Data::HashMap::I16A;
2 6     6   150409 use strict;
  6         11  
  6         317  
3 6     6   35 use warnings;
  6         11  
  6         343  
4 6     6   709 use Data::HashMap;
  6         12  
  6         2254  
5             our $VERSION = '0.06';
6              
7             sub import {
8 6     6   86 $^H{"Data::HashMap::I16A/hm_i16a_put"} = 1;
9 6         19 $^H{"Data::HashMap::I16A/hm_i16a_get"} = 1;
10 6         16 $^H{"Data::HashMap::I16A/hm_i16a_remove"} = 1;
11 6         16 $^H{"Data::HashMap::I16A/hm_i16a_take"} = 1;
12 6         18 $^H{"Data::HashMap::I16A/hm_i16a_drain"} = 1;
13 6         18 $^H{"Data::HashMap::I16A/hm_i16a_pop"} = 1;
14 6         15 $^H{"Data::HashMap::I16A/hm_i16a_shift"} = 1;
15 6         13 $^H{"Data::HashMap::I16A/hm_i16a_reserve"} = 1;
16 6         16 $^H{"Data::HashMap::I16A/hm_i16a_purge"} = 1;
17 6         13 $^H{"Data::HashMap::I16A/hm_i16a_capacity"} = 1;
18 6         14 $^H{"Data::HashMap::I16A/hm_i16a_persist"} = 1;
19 6         14 $^H{"Data::HashMap::I16A/hm_i16a_swap"} = 1;
20 6         13 $^H{"Data::HashMap::I16A/hm_i16a_exists"} = 1;
21 6         18 $^H{"Data::HashMap::I16A/hm_i16a_size"} = 1;
22 6         15 $^H{"Data::HashMap::I16A/hm_i16a_keys"} = 1;
23 6         21 $^H{"Data::HashMap::I16A/hm_i16a_values"} = 1;
24 6         15 $^H{"Data::HashMap::I16A/hm_i16a_items"} = 1;
25 6         14 $^H{"Data::HashMap::I16A/hm_i16a_max_size"} = 1;
26 6         13 $^H{"Data::HashMap::I16A/hm_i16a_ttl"} = 1;
27 6         13 $^H{"Data::HashMap::I16A/hm_i16a_lru_skip"} = 1;
28 6         28 $^H{"Data::HashMap::I16A/hm_i16a_each"} = 1;
29 6         22 $^H{"Data::HashMap::I16A/hm_i16a_iter_reset"} = 1;
30 6         24 $^H{"Data::HashMap::I16A/hm_i16a_clear"} = 1;
31 6         20 $^H{"Data::HashMap::I16A/hm_i16a_to_hash"} = 1;
32 6         14 $^H{"Data::HashMap::I16A/hm_i16a_put_ttl"} = 1;
33 6         152945 $^H{"Data::HashMap::I16A/hm_i16a_get_or_set"} = 1;
34             }
35              
36             1;