| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package ArrayData::LinesInFile; |
|
2
|
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
354508
|
use strict; |
|
|
3
|
|
|
|
|
6
|
|
|
|
3
|
|
|
|
|
117
|
|
|
4
|
3
|
|
|
3
|
|
13
|
use warnings; |
|
|
3
|
|
|
|
|
7
|
|
|
|
3
|
|
|
|
|
201
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
3
|
|
|
3
|
|
1359
|
use Role::Tiny::With; |
|
|
3
|
|
|
|
|
28672
|
|
|
|
3
|
|
|
|
|
432
|
|
|
7
|
|
|
|
|
|
|
with 'ArrayDataRole::Source::LinesInFile'; |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
10
|
|
|
|
|
|
|
our $DATE = '2024-05-06'; # DATE |
|
11
|
|
|
|
|
|
|
our $DIST = 'ArrayDataRoles-Standard'; # DIST |
|
12
|
|
|
|
|
|
|
our $VERSION = '0.010'; # VERSION |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
|
15
|
|
|
|
|
|
|
# ABSTRACT: Get array data from a file/filehandle, one line per element |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__END__ |