line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
2
|
|
|
2
|
|
27
|
use v5.12; |
|
2
|
|
|
|
|
8
|
|
2
|
2
|
|
|
2
|
|
16
|
use strict; |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
50
|
|
3
|
2
|
|
|
2
|
|
12
|
use warnings; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
120
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Data::Validate::CSV::Note; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:TOBYINK'; |
8
|
|
|
|
|
|
|
our $VERSION = '0.003'; |
9
|
|
|
|
|
|
|
|
10
|
2
|
|
|
2
|
|
16
|
use Moo; |
|
2
|
|
|
|
|
28
|
|
|
2
|
|
|
|
|
12
|
|
11
|
2
|
|
|
2
|
|
641
|
use Data::Validate::CSV::Types -types; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
16
|
|
12
|
2
|
|
|
2
|
|
10815
|
use namespace::autoclean; |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
17
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has type => (is => 'ro', isa => Str); |
15
|
|
|
|
|
|
|
has [qw( |
16
|
|
|
|
|
|
|
via canonical rights motivation body target |
17
|
|
|
|
|
|
|
creator generator audience |
18
|
|
|
|
|
|
|
)] => (is => 'ro', isa => Any); |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
1; |