blib/lib/DataStructure/Set.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::Set; | ||||||
2 | |||||||
3 | 1 | 1 | 421 | use strict; | |||
1 | 3 | ||||||
1 | 29 | ||||||
4 | 1 | 1 | 5 | use warnings; | |||
1 | 2 | ||||||
1 | 22 | ||||||
5 | 1 | 1 | 4 | use utf8; | |||
1 | 2 | ||||||
1 | 6 | ||||||
6 | 1 | 1 | 22 | use feature ':5.24'; | |||
1 | 2 | ||||||
1 | 74 | ||||||
7 | 1 | 1 | 6 | use feature 'signatures'; | |||
1 | 2 | ||||||
1 | 45 | ||||||
8 | 1 | 1 | 7 | no warnings 'experimental::signatures'; | |||
1 | 2 | ||||||
1 | 47 | ||||||
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; |