File Coverage

blib/lib/Data/HashMap/I16S.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::I16S;
2 5     5   109681 use strict;
  5         13  
  5         237  
3 5     5   56 use warnings;
  5         36  
  5         343  
4 5     5   465 use Data::HashMap;
  5         8  
  5         1321  
5             our $VERSION = '0.01';
6              
7             sub import {
8 5     5   63 $^H{"Data::HashMap::I16S/hm_i16s_put"} = 1;
9 5         15 $^H{"Data::HashMap::I16S/hm_i16s_get"} = 1;
10 5         16 $^H{"Data::HashMap::I16S/hm_i16s_remove"} = 1;
11 5         19 $^H{"Data::HashMap::I16S/hm_i16s_exists"} = 1;
12 5         14 $^H{"Data::HashMap::I16S/hm_i16s_size"} = 1;
13 5         13 $^H{"Data::HashMap::I16S/hm_i16s_keys"} = 1;
14 5         12 $^H{"Data::HashMap::I16S/hm_i16s_values"} = 1;
15 5         12 $^H{"Data::HashMap::I16S/hm_i16s_items"} = 1;
16 5         13 $^H{"Data::HashMap::I16S/hm_i16s_max_size"} = 1;
17 5         11 $^H{"Data::HashMap::I16S/hm_i16s_ttl"} = 1;
18 5         11 $^H{"Data::HashMap::I16S/hm_i16s_each"} = 1;
19 5         12 $^H{"Data::HashMap::I16S/hm_i16s_iter_reset"} = 1;
20 5         13 $^H{"Data::HashMap::I16S/hm_i16s_clear"} = 1;
21 5         9 $^H{"Data::HashMap::I16S/hm_i16s_to_hash"} = 1;
22 5         10 $^H{"Data::HashMap::I16S/hm_i16s_put_ttl"} = 1;
23 5         4016 $^H{"Data::HashMap::I16S/hm_i16s_get_or_set"} = 1;
24             }
25              
26             1;