File Coverage

blib/lib/Data/HashMap/SA.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::SA;
2 7     7   113599 use strict;
  7         10  
  7         228  
3 7     7   29 use warnings;
  7         9  
  7         277  
4 7     7   402 use Data::HashMap;
  7         12  
  7         1638  
5             our $VERSION = '0.04';
6              
7             sub import {
8 7     7   70 $^H{"Data::HashMap::SA/hm_sa_put"} = 1;
9 7         75 $^H{"Data::HashMap::SA/hm_sa_get"} = 1;
10 7         63 $^H{"Data::HashMap::SA/hm_sa_remove"} = 1;
11 7         31 $^H{"Data::HashMap::SA/hm_sa_exists"} = 1;
12 7         17 $^H{"Data::HashMap::SA/hm_sa_size"} = 1;
13 7         81 $^H{"Data::HashMap::SA/hm_sa_keys"} = 1;
14 7         18 $^H{"Data::HashMap::SA/hm_sa_values"} = 1;
15 7         17 $^H{"Data::HashMap::SA/hm_sa_items"} = 1;
16 7         57 $^H{"Data::HashMap::SA/hm_sa_max_size"} = 1;
17 7         18 $^H{"Data::HashMap::SA/hm_sa_ttl"} = 1;
18 7         13 $^H{"Data::HashMap::SA/hm_sa_each"} = 1;
19 7         19 $^H{"Data::HashMap::SA/hm_sa_iter_reset"} = 1;
20 7         19 $^H{"Data::HashMap::SA/hm_sa_clear"} = 1;
21 7         14 $^H{"Data::HashMap::SA/hm_sa_to_hash"} = 1;
22 7         24 $^H{"Data::HashMap::SA/hm_sa_put_ttl"} = 1;
23 7         5547 $^H{"Data::HashMap::SA/hm_sa_get_or_set"} = 1;
24             }
25              
26             1;