File Coverage

blib/lib/Data/HashMap/SI32.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::SI32;
2 6     6   95296 use strict;
  6         10  
  6         240  
3 6     6   25 use warnings;
  6         10  
  6         247  
4 6     6   425 use Data::HashMap;
  6         8  
  6         1475  
5             our $VERSION = '0.04';
6              
7             sub import {
8 6     6   64 $^H{"Data::HashMap::SI32/hm_si32_put"} = 1;
9 6         16 $^H{"Data::HashMap::SI32/hm_si32_get"} = 1;
10 6         13 $^H{"Data::HashMap::SI32/hm_si32_remove"} = 1;
11 6         32 $^H{"Data::HashMap::SI32/hm_si32_exists"} = 1;
12 6         13 $^H{"Data::HashMap::SI32/hm_si32_incr"} = 1;
13 6         10 $^H{"Data::HashMap::SI32/hm_si32_decr"} = 1;
14 6         15 $^H{"Data::HashMap::SI32/hm_si32_incr_by"} = 1;
15 6         13 $^H{"Data::HashMap::SI32/hm_si32_size"} = 1;
16 6         12 $^H{"Data::HashMap::SI32/hm_si32_keys"} = 1;
17 6         10 $^H{"Data::HashMap::SI32/hm_si32_values"} = 1;
18 6         14 $^H{"Data::HashMap::SI32/hm_si32_items"} = 1;
19 6         14 $^H{"Data::HashMap::SI32/hm_si32_max_size"} = 1;
20 6         12 $^H{"Data::HashMap::SI32/hm_si32_ttl"} = 1;
21 6         13 $^H{"Data::HashMap::SI32/hm_si32_each"} = 1;
22 6         12 $^H{"Data::HashMap::SI32/hm_si32_iter_reset"} = 1;
23 6         12 $^H{"Data::HashMap::SI32/hm_si32_clear"} = 1;
24 6         19 $^H{"Data::HashMap::SI32/hm_si32_to_hash"} = 1;
25 6         11 $^H{"Data::HashMap::SI32/hm_si32_put_ttl"} = 1;
26 6         13694 $^H{"Data::HashMap::SI32/hm_si32_get_or_set"} = 1;
27             }
28              
29             1;