File Coverage

blib/lib/DataStructure/LIFO.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::LIFO;
2              
3 2     2   851 use strict;
  2         5  
  2         55  
4 2     2   10 use warnings;
  2         4  
  2         44  
5 2     2   10 use utf8;
  2         3  
  2         9  
6 2     2   43 use feature ':5.24';
  2         4  
  2         185  
7 2     2   12 use feature 'signatures';
  2         3  
  2         64  
8 2     2   11 no warnings 'experimental::signatures';
  2         4  
  2         101  
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 Stack, so we’re not defining additional
14             # synonyms here.
15              
16             1;