File Coverage

blib/lib/Data/HashMap/SI16.pm
Criterion Covered Total %
statement 28 28 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::SI16;
2 6     6   136286 use strict;
  6         11  
  6         279  
3 6     6   37 use warnings;
  6         11  
  6         346  
4 6     6   643 use Data::HashMap;
  6         11  
  6         2000  
5             our $VERSION = '0.01';
6              
7             sub import {
8 6     6   82 $^H{"Data::HashMap::SI16/hm_si16_put"} = 1;
9 6         25 $^H{"Data::HashMap::SI16/hm_si16_get"} = 1;
10 6         26 $^H{"Data::HashMap::SI16/hm_si16_remove"} = 1;
11 6         17 $^H{"Data::HashMap::SI16/hm_si16_exists"} = 1;
12 6         29 $^H{"Data::HashMap::SI16/hm_si16_incr"} = 1;
13 6         15 $^H{"Data::HashMap::SI16/hm_si16_decr"} = 1;
14 6         18 $^H{"Data::HashMap::SI16/hm_si16_incr_by"} = 1;
15 6         19 $^H{"Data::HashMap::SI16/hm_si16_size"} = 1;
16 6         20 $^H{"Data::HashMap::SI16/hm_si16_keys"} = 1;
17 6         25 $^H{"Data::HashMap::SI16/hm_si16_values"} = 1;
18 6         17 $^H{"Data::HashMap::SI16/hm_si16_items"} = 1;
19 6         16 $^H{"Data::HashMap::SI16/hm_si16_max_size"} = 1;
20 6         16 $^H{"Data::HashMap::SI16/hm_si16_ttl"} = 1;
21 6         17 $^H{"Data::HashMap::SI16/hm_si16_each"} = 1;
22 6         17 $^H{"Data::HashMap::SI16/hm_si16_iter_reset"} = 1;
23 6         14 $^H{"Data::HashMap::SI16/hm_si16_clear"} = 1;
24 6         18 $^H{"Data::HashMap::SI16/hm_si16_to_hash"} = 1;
25 6         15 $^H{"Data::HashMap::SI16/hm_si16_put_ttl"} = 1;
26 6         4710 $^H{"Data::HashMap::SI16/hm_si16_get_or_set"} = 1;
27             }
28              
29             1;