| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::ArrayData; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
428600
|
use strict; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
89
|
|
|
4
|
1
|
|
|
1
|
|
28
|
use warnings; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
107
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
680
|
use Acme::CPANModulesUtil::Misc; |
|
|
1
|
|
|
|
|
665
|
|
|
|
1
|
|
|
|
|
170
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
9
|
|
|
|
|
|
|
our $DATE = '2024-01-22'; # DATE |
|
10
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-ArrayData'; # DIST |
|
11
|
|
|
|
|
|
|
our $VERSION = '0.001'; # VERSION |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
my $text = <<'MARKDOWN'; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
is a way to package 1-dimensional array data as a Perl/CPAN |
|
16
|
|
|
|
|
|
|
module. It also provides a standard interface to access the data, including |
|
17
|
|
|
|
|
|
|
iterating the data rows, getting the column names, and so on. |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
**The data** |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
All Perl modules under `ArrayData::*` namespace are modules that contain array |
|
23
|
|
|
|
|
|
|
data data. Examples include: `ArrayData::Sample::DeNiro`, |
|
24
|
|
|
|
|
|
|
`ArrayData::Lingua::Word::EN::Enable`. |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
**CLIs** |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
(from ) is the official CLI for `ArrayData`. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
**Sah schemas** |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
**Tie** |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
if you are more comfortable in accessing an ArrayData |
|
40
|
|
|
|
|
|
|
as a regular (tied) Perl array. |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
MARKDOWN |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
our $LIST = { |
|
46
|
|
|
|
|
|
|
summary => 'List of modules related to ArrayData', |
|
47
|
|
|
|
|
|
|
description => $text, |
|
48
|
|
|
|
|
|
|
tags => ['task'], |
|
49
|
|
|
|
|
|
|
}; |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Acme::CPANModulesUtil::Misc::populate_entries_from_module_links_in_description; |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
1; |
|
54
|
|
|
|
|
|
|
# ABSTRACT: List of modules related to ArrayData |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
__END__ |