File Coverage

blib/lib/Data/HashMap/I32S.pm
Criterion Covered Total %
statement 26 26 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 30 30 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::I32S;
2 6     6   82870 use strict;
  6         10  
  6         220  
3 6     6   26 use warnings;
  6         7  
  6         286  
4 6     6   1894 use Data::HashMap;
  6         13  
  6         1361  
5             our $VERSION = '0.04';
6              
7             sub import {
8 6     6   71 $^H{"Data::HashMap::I32S/hm_i32s_put"} = 1;
9 6         15 $^H{"Data::HashMap::I32S/hm_i32s_get"} = 1;
10 6         14 $^H{"Data::HashMap::I32S/hm_i32s_remove"} = 1;
11 6         15 $^H{"Data::HashMap::I32S/hm_i32s_exists"} = 1;
12 6         30 $^H{"Data::HashMap::I32S/hm_i32s_size"} = 1;
13 6         13 $^H{"Data::HashMap::I32S/hm_i32s_keys"} = 1;
14 6         12 $^H{"Data::HashMap::I32S/hm_i32s_values"} = 1;
15 6         38 $^H{"Data::HashMap::I32S/hm_i32s_items"} = 1;
16 6         14 $^H{"Data::HashMap::I32S/hm_i32s_max_size"} = 1;
17 6         2157 $^H{"Data::HashMap::I32S/hm_i32s_ttl"} = 1;
18 6         22 $^H{"Data::HashMap::I32S/hm_i32s_each"} = 1;
19 6         22 $^H{"Data::HashMap::I32S/hm_i32s_iter_reset"} = 1;
20 6         14 $^H{"Data::HashMap::I32S/hm_i32s_clear"} = 1;
21 6         18 $^H{"Data::HashMap::I32S/hm_i32s_to_hash"} = 1;
22 6         12 $^H{"Data::HashMap::I32S/hm_i32s_put_ttl"} = 1;
23 6         12 $^H{"Data::HashMap::I32S/hm_i32s_get_or_set"} = 1;
24 6         2393 $^H{"Data::HashMap::I32S/hm_i32s_get_direct"} = 1;
25             }
26              
27             1;