File Coverage

blib/lib/DataStructure/FIFO.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package DataStructure::FIFO;
2              
3 2     2   855 use strict;
  2         4  
  2         57  
4 2     2   9 use warnings;
  2         4  
  2         43  
5 2     2   9 use utf8;
  2         4  
  2         9  
6 2     2   43 use feature ':5.24';
  2         5  
  2         147  
7 2     2   11 use feature 'signatures';
  2         4  
  2         51  
8 2     2   11 no warnings 'experimental::signatures';
  2         5  
  2         98  
9              
10             # Empty, only a declaration of a role that can be used by other data-structures.
11             # In the future this might be a Role::Tiny role.
12              
13             # In addition, this is a synonym for Queue, so we’re not defining additional
14             # synonyms here.
15              
16             1;