File Coverage

blib/lib/Data/HashMap/IS.pm
Criterion Covered Total %
statement 26 26 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 30 30 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::IS;
2 7     7   133521 use strict;
  7         13  
  7         282  
3 7     7   59 use warnings;
  7         11  
  7         310  
4 7     7   648 use Data::HashMap;
  7         13  
  7         1802  
5             our $VERSION = '0.04';
6              
7             sub import {
8 8     8   83 $^H{"Data::HashMap::IS/hm_is_put"} = 1;
9 8         20 $^H{"Data::HashMap::IS/hm_is_get"} = 1;
10 8         24 $^H{"Data::HashMap::IS/hm_is_remove"} = 1;
11 8         18 $^H{"Data::HashMap::IS/hm_is_exists"} = 1;
12 8         18 $^H{"Data::HashMap::IS/hm_is_size"} = 1;
13 8         30 $^H{"Data::HashMap::IS/hm_is_keys"} = 1;
14 8         16 $^H{"Data::HashMap::IS/hm_is_values"} = 1;
15 8         17 $^H{"Data::HashMap::IS/hm_is_items"} = 1;
16 8         18 $^H{"Data::HashMap::IS/hm_is_max_size"} = 1;
17 8         16 $^H{"Data::HashMap::IS/hm_is_ttl"} = 1;
18 8         17 $^H{"Data::HashMap::IS/hm_is_each"} = 1;
19 8         25 $^H{"Data::HashMap::IS/hm_is_iter_reset"} = 1;
20 8         15 $^H{"Data::HashMap::IS/hm_is_clear"} = 1;
21 8         20 $^H{"Data::HashMap::IS/hm_is_to_hash"} = 1;
22 8         17 $^H{"Data::HashMap::IS/hm_is_put_ttl"} = 1;
23 8         16 $^H{"Data::HashMap::IS/hm_is_get_or_set"} = 1;
24 8         4054 $^H{"Data::HashMap::IS/hm_is_get_direct"} = 1;
25             }
26              
27             1;