File Coverage

blib/lib/Data/HashMap/IA.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::IA;
2 3     3   131463 use strict;
  3         6  
  3         124  
3 3     3   15 use warnings;
  3         7  
  3         155  
4 3     3   438 use Data::HashMap;
  3         5  
  3         735  
5             our $VERSION = '0.01';
6              
7             sub import {
8 3     3   42 $^H{"Data::HashMap::IA/hm_ia_put"} = 1;
9 3         9 $^H{"Data::HashMap::IA/hm_ia_get"} = 1;
10 3         7 $^H{"Data::HashMap::IA/hm_ia_remove"} = 1;
11 3         8 $^H{"Data::HashMap::IA/hm_ia_exists"} = 1;
12 3         8 $^H{"Data::HashMap::IA/hm_ia_size"} = 1;
13 3         9 $^H{"Data::HashMap::IA/hm_ia_keys"} = 1;
14 3         6 $^H{"Data::HashMap::IA/hm_ia_values"} = 1;
15 3         6 $^H{"Data::HashMap::IA/hm_ia_items"} = 1;
16 3         8 $^H{"Data::HashMap::IA/hm_ia_max_size"} = 1;
17 3         7 $^H{"Data::HashMap::IA/hm_ia_ttl"} = 1;
18 3         7 $^H{"Data::HashMap::IA/hm_ia_each"} = 1;
19 3         7 $^H{"Data::HashMap::IA/hm_ia_iter_reset"} = 1;
20 3         7 $^H{"Data::HashMap::IA/hm_ia_clear"} = 1;
21 3         6 $^H{"Data::HashMap::IA/hm_ia_to_hash"} = 1;
22 3         7 $^H{"Data::HashMap::IA/hm_ia_put_ttl"} = 1;
23 3         4731 $^H{"Data::HashMap::IA/hm_ia_get_or_set"} = 1;
24             }
25              
26             1;