File Coverage

blib/lib/DataStructure/Queue.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::Queue;
2              
3 2     2   832 use strict;
  2         4  
  2         59  
4 2     2   10 use warnings;
  2         5  
  2         44  
5 2     2   10 use utf8;
  2         4  
  2         9  
6 2     2   44 use feature ':5.24';
  2         4  
  2         155  
7 2     2   11 use feature 'signatures';
  2         4  
  2         67  
8 2     2   12 no warnings 'experimental::signatures';
  2         3  
  2         68  
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 2     2   44 use parent qw(DataStructure::FIFO);
  2         13  
  2         15  
15              
16             1;