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 7     7   88737 use strict;
  7         15  
  7         273  
3 7     7   32 use warnings;
  7         13  
  7         337  
4 7     7   418 use Data::HashMap;
  7         11  
  7         2063  
5             our $VERSION = '0.04';
6              
7             sub import {
8 7     7   78 $^H{"Data::HashMap::SI16/hm_si16_put"} = 1;
9 7         19 $^H{"Data::HashMap::SI16/hm_si16_get"} = 1;
10 7         17 $^H{"Data::HashMap::SI16/hm_si16_remove"} = 1;
11 7         19 $^H{"Data::HashMap::SI16/hm_si16_exists"} = 1;
12 7         30 $^H{"Data::HashMap::SI16/hm_si16_incr"} = 1;
13 7         16 $^H{"Data::HashMap::SI16/hm_si16_decr"} = 1;
14 7         40 $^H{"Data::HashMap::SI16/hm_si16_incr_by"} = 1;
15 7         16 $^H{"Data::HashMap::SI16/hm_si16_size"} = 1;
16 7         63 $^H{"Data::HashMap::SI16/hm_si16_keys"} = 1;
17 7         28 $^H{"Data::HashMap::SI16/hm_si16_values"} = 1;
18 7         17 $^H{"Data::HashMap::SI16/hm_si16_items"} = 1;
19 7         16 $^H{"Data::HashMap::SI16/hm_si16_max_size"} = 1;
20 7         17 $^H{"Data::HashMap::SI16/hm_si16_ttl"} = 1;
21 7         17 $^H{"Data::HashMap::SI16/hm_si16_each"} = 1;
22 7         16 $^H{"Data::HashMap::SI16/hm_si16_iter_reset"} = 1;
23 7         14 $^H{"Data::HashMap::SI16/hm_si16_clear"} = 1;
24 7         16 $^H{"Data::HashMap::SI16/hm_si16_to_hash"} = 1;
25 7         16 $^H{"Data::HashMap::SI16/hm_si16_put_ttl"} = 1;
26 7         2799 $^H{"Data::HashMap::SI16/hm_si16_get_or_set"} = 1;
27             }
28              
29             1;