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 7     7   89033 use strict;
  7         12  
  7         248  
3 7     7   30 use warnings;
  7         16  
  7         315  
4 7     7   547 use Data::HashMap;
  7         19  
  7         1546  
5             our $VERSION = '0.04';
6              
7             sub import {
8 7     7   69 $^H{"Data::HashMap::IA/hm_ia_put"} = 1;
9 7         18 $^H{"Data::HashMap::IA/hm_ia_get"} = 1;
10 7         14 $^H{"Data::HashMap::IA/hm_ia_remove"} = 1;
11 7         20 $^H{"Data::HashMap::IA/hm_ia_exists"} = 1;
12 7         14 $^H{"Data::HashMap::IA/hm_ia_size"} = 1;
13 7         17 $^H{"Data::HashMap::IA/hm_ia_keys"} = 1;
14 7         14 $^H{"Data::HashMap::IA/hm_ia_values"} = 1;
15 7         16 $^H{"Data::HashMap::IA/hm_ia_items"} = 1;
16 7         15 $^H{"Data::HashMap::IA/hm_ia_max_size"} = 1;
17 7         12 $^H{"Data::HashMap::IA/hm_ia_ttl"} = 1;
18 7         15 $^H{"Data::HashMap::IA/hm_ia_each"} = 1;
19 7         16 $^H{"Data::HashMap::IA/hm_ia_iter_reset"} = 1;
20 7         17 $^H{"Data::HashMap::IA/hm_ia_clear"} = 1;
21 7         16 $^H{"Data::HashMap::IA/hm_ia_to_hash"} = 1;
22 7         13 $^H{"Data::HashMap::IA/hm_ia_put_ttl"} = 1;
23 7         8113 $^H{"Data::HashMap::IA/hm_ia_get_or_set"} = 1;
24             }
25              
26             1;