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