File Coverage

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


line stmt bran cond sub pod time code
1             package Data::HashMap::I32S;
2 5     5   121590 use strict;
  5         11  
  5         230  
3 5     5   34 use warnings;
  5         9  
  5         295  
4 5     5   699 use Data::HashMap;
  5         12  
  5         1587  
5             our $VERSION = '0.01';
6              
7             sub import {
8 5     5   79 $^H{"Data::HashMap::I32S/hm_i32s_put"} = 1;
9 5         21 $^H{"Data::HashMap::I32S/hm_i32s_get"} = 1;
10 5         18 $^H{"Data::HashMap::I32S/hm_i32s_remove"} = 1;
11 5         16 $^H{"Data::HashMap::I32S/hm_i32s_exists"} = 1;
12 5         14 $^H{"Data::HashMap::I32S/hm_i32s_size"} = 1;
13 5         14 $^H{"Data::HashMap::I32S/hm_i32s_keys"} = 1;
14 5         15 $^H{"Data::HashMap::I32S/hm_i32s_values"} = 1;
15 5         42 $^H{"Data::HashMap::I32S/hm_i32s_items"} = 1;
16 5         18 $^H{"Data::HashMap::I32S/hm_i32s_max_size"} = 1;
17 5         13 $^H{"Data::HashMap::I32S/hm_i32s_ttl"} = 1;
18 5         13 $^H{"Data::HashMap::I32S/hm_i32s_each"} = 1;
19 5         15 $^H{"Data::HashMap::I32S/hm_i32s_iter_reset"} = 1;
20 5         2112 $^H{"Data::HashMap::I32S/hm_i32s_clear"} = 1;
21 5         21 $^H{"Data::HashMap::I32S/hm_i32s_to_hash"} = 1;
22 5         21 $^H{"Data::HashMap::I32S/hm_i32s_put_ttl"} = 1;
23 5         4092 $^H{"Data::HashMap::I32S/hm_i32s_get_or_set"} = 1;
24             }
25              
26             1;