File Coverage

blib/lib/Data/HashMap/IS.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::IS;
2 5     5   141391 use strict;
  5         10  
  5         216  
3 5     5   30 use warnings;
  5         10  
  5         2109  
4 5     5   639 use Data::HashMap;
  5         9  
  5         1291  
5             our $VERSION = '0.01';
6              
7             sub import {
8 5     5   66 $^H{"Data::HashMap::IS/hm_is_put"} = 1;
9 5         16 $^H{"Data::HashMap::IS/hm_is_get"} = 1;
10 5         12 $^H{"Data::HashMap::IS/hm_is_remove"} = 1;
11 5         14 $^H{"Data::HashMap::IS/hm_is_exists"} = 1;
12 5         15 $^H{"Data::HashMap::IS/hm_is_size"} = 1;
13 5         14 $^H{"Data::HashMap::IS/hm_is_keys"} = 1;
14 5         30 $^H{"Data::HashMap::IS/hm_is_values"} = 1;
15 5         14 $^H{"Data::HashMap::IS/hm_is_items"} = 1;
16 5         63 $^H{"Data::HashMap::IS/hm_is_max_size"} = 1;
17 5         17 $^H{"Data::HashMap::IS/hm_is_ttl"} = 1;
18 5         16 $^H{"Data::HashMap::IS/hm_is_each"} = 1;
19 5         14 $^H{"Data::HashMap::IS/hm_is_iter_reset"} = 1;
20 5         10 $^H{"Data::HashMap::IS/hm_is_clear"} = 1;
21 5         13 $^H{"Data::HashMap::IS/hm_is_to_hash"} = 1;
22 5         14 $^H{"Data::HashMap::IS/hm_is_put_ttl"} = 1;
23 5         4430 $^H{"Data::HashMap::IS/hm_is_get_or_set"} = 1;
24             }
25              
26             1;