File Coverage

blib/lib/DataStructure/OrderedSet.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package DataStructure::OrderedSet;
2              
3 1     1   473 use strict;
  1         2  
  1         30  
4 1     1   5 use warnings;
  1         3  
  1         27  
5 1     1   5 use utf8;
  1         3  
  1         6  
6 1     1   24 use feature ':5.24';
  1         2  
  1         129  
7 1     1   7 use feature 'signatures';
  1         8  
  1         34  
8 1     1   6 no warnings 'experimental::signatures';
  1         2  
  1         53  
9              
10             # Empty, except for the synonym roles. This is only a declaration of a role that
11             # can be used by other data-structures. In the future this might be a Role::Tiny
12             # role.
13              
14 1     1   6 use parent qw(DataStructure::Set);
  1         2  
  1         12  
15              
16             1;