File Coverage

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


line stmt bran cond sub pod time code
1             package Data::HashMap::I32S;
2 6     6   90222 use strict;
  6         48  
  6         259  
3 6     6   30 use warnings;
  6         10  
  6         310  
4 6     6   596 use Data::HashMap;
  6         13  
  6         3546  
5             our $VERSION = '0.06';
6              
7             sub import {
8 6     6   67 $^H{"Data::HashMap::I32S/hm_i32s_put"} = 1;
9 6         16 $^H{"Data::HashMap::I32S/hm_i32s_get"} = 1;
10 6         13 $^H{"Data::HashMap::I32S/hm_i32s_remove"} = 1;
11 6         12 $^H{"Data::HashMap::I32S/hm_i32s_take"} = 1;
12 6         13 $^H{"Data::HashMap::I32S/hm_i32s_drain"} = 1;
13 6         13 $^H{"Data::HashMap::I32S/hm_i32s_pop"} = 1;
14 6         11 $^H{"Data::HashMap::I32S/hm_i32s_shift"} = 1;
15 6         11 $^H{"Data::HashMap::I32S/hm_i32s_reserve"} = 1;
16 6         14 $^H{"Data::HashMap::I32S/hm_i32s_purge"} = 1;
17 6         12 $^H{"Data::HashMap::I32S/hm_i32s_capacity"} = 1;
18 6         13 $^H{"Data::HashMap::I32S/hm_i32s_persist"} = 1;
19 6         15 $^H{"Data::HashMap::I32S/hm_i32s_swap"} = 1;
20 6         10 $^H{"Data::HashMap::I32S/hm_i32s_exists"} = 1;
21 6         12 $^H{"Data::HashMap::I32S/hm_i32s_size"} = 1;
22 6         12 $^H{"Data::HashMap::I32S/hm_i32s_keys"} = 1;
23 6         12 $^H{"Data::HashMap::I32S/hm_i32s_values"} = 1;
24 6         11 $^H{"Data::HashMap::I32S/hm_i32s_items"} = 1;
25 6         12 $^H{"Data::HashMap::I32S/hm_i32s_max_size"} = 1;
26 6         14 $^H{"Data::HashMap::I32S/hm_i32s_ttl"} = 1;
27 6         13 $^H{"Data::HashMap::I32S/hm_i32s_lru_skip"} = 1;
28 6         8 $^H{"Data::HashMap::I32S/hm_i32s_each"} = 1;
29 6         14 $^H{"Data::HashMap::I32S/hm_i32s_iter_reset"} = 1;
30 6         15 $^H{"Data::HashMap::I32S/hm_i32s_clear"} = 1;
31 6         10 $^H{"Data::HashMap::I32S/hm_i32s_to_hash"} = 1;
32 6         12 $^H{"Data::HashMap::I32S/hm_i32s_put_ttl"} = 1;
33 6         12 $^H{"Data::HashMap::I32S/hm_i32s_get_or_set"} = 1;
34 6         3796 $^H{"Data::HashMap::I32S/hm_i32s_get_direct"} = 1;
35             }
36              
37             1;