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