File Coverage

blib/lib/Data/HashMap/SI32.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::SI32;
2 7     7   88657 use strict;
  7         12  
  7         306  
3 7     7   37 use warnings;
  7         11  
  7         383  
4 7     7   450 use Data::HashMap;
  7         11  
  7         5158  
5             our $VERSION = '0.08';
6              
7             sub import {
8 7     7   113 $^H{"Data::HashMap::SI32/hm_si32_put"} = 1;
9 7         24 $^H{"Data::HashMap::SI32/hm_si32_get"} = 1;
10 7         22 $^H{"Data::HashMap::SI32/hm_si32_remove"} = 1;
11 7         20 $^H{"Data::HashMap::SI32/hm_si32_take"} = 1;
12 7         62 $^H{"Data::HashMap::SI32/hm_si32_drain"} = 1;
13 7         18 $^H{"Data::HashMap::SI32/hm_si32_pop"} = 1;
14 7         18 $^H{"Data::HashMap::SI32/hm_si32_shift"} = 1;
15 7         101 $^H{"Data::HashMap::SI32/hm_si32_reserve"} = 1;
16 7         20 $^H{"Data::HashMap::SI32/hm_si32_purge"} = 1;
17 7         17 $^H{"Data::HashMap::SI32/hm_si32_capacity"} = 1;
18 7         21 $^H{"Data::HashMap::SI32/hm_si32_persist"} = 1;
19 7         16 $^H{"Data::HashMap::SI32/hm_si32_swap"} = 1;
20 7         19 $^H{"Data::HashMap::SI32/hm_si32_cas"} = 1;
21 7         21 $^H{"Data::HashMap::SI32/hm_si32_exists"} = 1;
22 7         16 $^H{"Data::HashMap::SI32/hm_si32_incr"} = 1;
23 7         19 $^H{"Data::HashMap::SI32/hm_si32_decr"} = 1;
24 7         19 $^H{"Data::HashMap::SI32/hm_si32_incr_by"} = 1;
25 7         48 $^H{"Data::HashMap::SI32/hm_si32_size"} = 1;
26 7         19 $^H{"Data::HashMap::SI32/hm_si32_keys"} = 1;
27 7         17 $^H{"Data::HashMap::SI32/hm_si32_values"} = 1;
28 7         19 $^H{"Data::HashMap::SI32/hm_si32_items"} = 1;
29 7         28 $^H{"Data::HashMap::SI32/hm_si32_max_size"} = 1;
30 7         20 $^H{"Data::HashMap::SI32/hm_si32_ttl"} = 1;
31 7         17 $^H{"Data::HashMap::SI32/hm_si32_lru_skip"} = 1;
32 7         18 $^H{"Data::HashMap::SI32/hm_si32_each"} = 1;
33 7         17 $^H{"Data::HashMap::SI32/hm_si32_iter_reset"} = 1;
34 7         18 $^H{"Data::HashMap::SI32/hm_si32_clear"} = 1;
35 7         16 $^H{"Data::HashMap::SI32/hm_si32_to_hash"} = 1;
36 7         27 $^H{"Data::HashMap::SI32/hm_si32_put_ttl"} = 1;
37 7         32025 $^H{"Data::HashMap::SI32/hm_si32_get_or_set"} = 1;
38             }
39              
40             1;