File Coverage

blib/lib/Data/HashMap/I16A.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::I16A;
2 6     6   117164 use strict;
  6         12  
  6         240  
3 6     6   32 use warnings;
  6         10  
  6         387  
4 6     6   500 use Data::HashMap;
  6         10  
  6         1339  
5             our $VERSION = '0.04';
6              
7             sub import {
8 6     6   60 $^H{"Data::HashMap::I16A/hm_i16a_put"} = 1;
9 6         16 $^H{"Data::HashMap::I16A/hm_i16a_get"} = 1;
10 6         15 $^H{"Data::HashMap::I16A/hm_i16a_remove"} = 1;
11 6         14 $^H{"Data::HashMap::I16A/hm_i16a_exists"} = 1;
12 6         18 $^H{"Data::HashMap::I16A/hm_i16a_size"} = 1;
13 6         12 $^H{"Data::HashMap::I16A/hm_i16a_keys"} = 1;
14 6         12 $^H{"Data::HashMap::I16A/hm_i16a_values"} = 1;
15 6         23 $^H{"Data::HashMap::I16A/hm_i16a_items"} = 1;
16 6         13 $^H{"Data::HashMap::I16A/hm_i16a_max_size"} = 1;
17 6         11 $^H{"Data::HashMap::I16A/hm_i16a_ttl"} = 1;
18 6         12 $^H{"Data::HashMap::I16A/hm_i16a_each"} = 1;
19 6         14 $^H{"Data::HashMap::I16A/hm_i16a_iter_reset"} = 1;
20 6         13 $^H{"Data::HashMap::I16A/hm_i16a_clear"} = 1;
21 6         11 $^H{"Data::HashMap::I16A/hm_i16a_to_hash"} = 1;
22 6         14 $^H{"Data::HashMap::I16A/hm_i16a_put_ttl"} = 1;
23 6         79987 $^H{"Data::HashMap::I16A/hm_i16a_get_or_set"} = 1;
24             }
25              
26             1;