File Coverage

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


line stmt bran cond sub pod time code
1             package Data::HashMap::SI16;
2 8     8   82426 use strict;
  8         12  
  8         320  
3 8     8   48 use warnings;
  8         11  
  8         367  
4 8     8   442 use Data::HashMap;
  8         12  
  8         2675  
5             our $VERSION = '0.08';
6              
7             sub import {
8 8     8   88 $^H{"Data::HashMap::SI16/hm_si16_put"} = 1;
9 8         23 $^H{"Data::HashMap::SI16/hm_si16_get"} = 1;
10 8         24 $^H{"Data::HashMap::SI16/hm_si16_remove"} = 1;
11 8         22 $^H{"Data::HashMap::SI16/hm_si16_take"} = 1;
12 8         17 $^H{"Data::HashMap::SI16/hm_si16_drain"} = 1;
13 8         19 $^H{"Data::HashMap::SI16/hm_si16_pop"} = 1;
14 8         18 $^H{"Data::HashMap::SI16/hm_si16_shift"} = 1;
15 8         19 $^H{"Data::HashMap::SI16/hm_si16_reserve"} = 1;
16 8         17 $^H{"Data::HashMap::SI16/hm_si16_purge"} = 1;
17 8         81 $^H{"Data::HashMap::SI16/hm_si16_capacity"} = 1;
18 8         21 $^H{"Data::HashMap::SI16/hm_si16_persist"} = 1;
19 8         18 $^H{"Data::HashMap::SI16/hm_si16_swap"} = 1;
20 8         14 $^H{"Data::HashMap::SI16/hm_si16_cas"} = 1;
21 8         17 $^H{"Data::HashMap::SI16/hm_si16_exists"} = 1;
22 8         20 $^H{"Data::HashMap::SI16/hm_si16_incr"} = 1;
23 8         16 $^H{"Data::HashMap::SI16/hm_si16_decr"} = 1;
24 8         19 $^H{"Data::HashMap::SI16/hm_si16_incr_by"} = 1;
25 8         14 $^H{"Data::HashMap::SI16/hm_si16_size"} = 1;
26 8         32 $^H{"Data::HashMap::SI16/hm_si16_keys"} = 1;
27 8         18 $^H{"Data::HashMap::SI16/hm_si16_values"} = 1;
28 8         18 $^H{"Data::HashMap::SI16/hm_si16_items"} = 1;
29 8         25 $^H{"Data::HashMap::SI16/hm_si16_max_size"} = 1;
30 8         18 $^H{"Data::HashMap::SI16/hm_si16_ttl"} = 1;
31 8         16 $^H{"Data::HashMap::SI16/hm_si16_lru_skip"} = 1;
32 8         18 $^H{"Data::HashMap::SI16/hm_si16_each"} = 1;
33 8         22 $^H{"Data::HashMap::SI16/hm_si16_iter_reset"} = 1;
34 8         17 $^H{"Data::HashMap::SI16/hm_si16_clear"} = 1;
35 8         16 $^H{"Data::HashMap::SI16/hm_si16_to_hash"} = 1;
36 8         25 $^H{"Data::HashMap::SI16/hm_si16_put_ttl"} = 1;
37 8         2963 $^H{"Data::HashMap::SI16/hm_si16_get_or_set"} = 1;
38             }
39              
40             1;