File Coverage

blib/lib/Data/HashMap/IA.pm
Criterion Covered Total %
statement 35 35 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 39 39 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::IA;
2 7     7   89157 use strict;
  7         11  
  7         347  
3 7     7   38 use warnings;
  7         9  
  7         299  
4 7     7   423 use Data::HashMap;
  7         11  
  7         1836  
5             our $VERSION = '0.07';
6              
7             sub import {
8 7     7   65 $^H{"Data::HashMap::IA/hm_ia_put"} = 1;
9 7         14 $^H{"Data::HashMap::IA/hm_ia_get"} = 1;
10 7         14 $^H{"Data::HashMap::IA/hm_ia_remove"} = 1;
11 7         14 $^H{"Data::HashMap::IA/hm_ia_take"} = 1;
12 7         23 $^H{"Data::HashMap::IA/hm_ia_drain"} = 1;
13 7         27 $^H{"Data::HashMap::IA/hm_ia_pop"} = 1;
14 7         13 $^H{"Data::HashMap::IA/hm_ia_shift"} = 1;
15 7         12 $^H{"Data::HashMap::IA/hm_ia_reserve"} = 1;
16 7         13 $^H{"Data::HashMap::IA/hm_ia_purge"} = 1;
17 7         15 $^H{"Data::HashMap::IA/hm_ia_capacity"} = 1;
18 7         11 $^H{"Data::HashMap::IA/hm_ia_persist"} = 1;
19 7         13 $^H{"Data::HashMap::IA/hm_ia_swap"} = 1;
20 7         13 $^H{"Data::HashMap::IA/hm_ia_exists"} = 1;
21 7         11 $^H{"Data::HashMap::IA/hm_ia_size"} = 1;
22 7         12 $^H{"Data::HashMap::IA/hm_ia_keys"} = 1;
23 7         13 $^H{"Data::HashMap::IA/hm_ia_values"} = 1;
24 7         11 $^H{"Data::HashMap::IA/hm_ia_items"} = 1;
25 7         13 $^H{"Data::HashMap::IA/hm_ia_max_size"} = 1;
26 7         12 $^H{"Data::HashMap::IA/hm_ia_ttl"} = 1;
27 7         13 $^H{"Data::HashMap::IA/hm_ia_lru_skip"} = 1;
28 7         13 $^H{"Data::HashMap::IA/hm_ia_each"} = 1;
29 7         18 $^H{"Data::HashMap::IA/hm_ia_iter_reset"} = 1;
30 7         12 $^H{"Data::HashMap::IA/hm_ia_clear"} = 1;
31 7         11 $^H{"Data::HashMap::IA/hm_ia_to_hash"} = 1;
32 7         13 $^H{"Data::HashMap::IA/hm_ia_put_ttl"} = 1;
33 7         8635 $^H{"Data::HashMap::IA/hm_ia_get_or_set"} = 1;
34             }
35              
36             1;