File Coverage

blib/lib/Data/HashMap/I16S.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::I16S;
2 6     6   95785 use strict;
  6         10  
  6         319  
3 6     6   38 use warnings;
  6         25  
  6         364  
4 6     6   423 use Data::HashMap;
  6         10  
  6         1573  
5             our $VERSION = '0.04';
6              
7             sub import {
8 6     6   63 $^H{"Data::HashMap::I16S/hm_i16s_put"} = 1;
9 6         14 $^H{"Data::HashMap::I16S/hm_i16s_get"} = 1;
10 6         20 $^H{"Data::HashMap::I16S/hm_i16s_remove"} = 1;
11 6         16 $^H{"Data::HashMap::I16S/hm_i16s_exists"} = 1;
12 6         15 $^H{"Data::HashMap::I16S/hm_i16s_size"} = 1;
13 6         12 $^H{"Data::HashMap::I16S/hm_i16s_keys"} = 1;
14 6         13 $^H{"Data::HashMap::I16S/hm_i16s_values"} = 1;
15 6         23 $^H{"Data::HashMap::I16S/hm_i16s_items"} = 1;
16 6         15 $^H{"Data::HashMap::I16S/hm_i16s_max_size"} = 1;
17 6         11 $^H{"Data::HashMap::I16S/hm_i16s_ttl"} = 1;
18 6         12 $^H{"Data::HashMap::I16S/hm_i16s_each"} = 1;
19 6         14 $^H{"Data::HashMap::I16S/hm_i16s_iter_reset"} = 1;
20 6         10 $^H{"Data::HashMap::I16S/hm_i16s_clear"} = 1;
21 6         13 $^H{"Data::HashMap::I16S/hm_i16s_to_hash"} = 1;
22 6         13 $^H{"Data::HashMap::I16S/hm_i16s_put_ttl"} = 1;
23 6         12 $^H{"Data::HashMap::I16S/hm_i16s_get_or_set"} = 1;
24 6         3669 $^H{"Data::HashMap::I16S/hm_i16s_get_direct"} = 1;
25             }
26              
27             1;