line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Data::Record::Serialize::Role::Encode; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Encode Role |
4
|
|
|
|
|
|
|
|
5
|
17
|
|
|
17
|
|
29294
|
use v5.12; |
|
17
|
|
|
|
|
124
|
|
6
|
17
|
|
|
17
|
|
141
|
use Moo::Role; |
|
17
|
|
|
|
|
45
|
|
|
17
|
|
|
|
|
137
|
|
7
|
|
|
|
|
|
|
|
8
|
17
|
|
|
17
|
|
8083
|
use namespace::clean; |
|
17
|
|
|
|
|
48
|
|
|
17
|
|
|
|
|
113
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '1.05'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
requires 'encode'; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# |
17
|
|
|
|
|
|
|
# This file is part of Data-Record-Serialize |
18
|
|
|
|
|
|
|
# |
19
|
|
|
|
|
|
|
# This software is Copyright (c) 2017 by Smithsonian Astrophysical Observatory. |
20
|
|
|
|
|
|
|
# |
21
|
|
|
|
|
|
|
# This is free software, licensed under: |
22
|
|
|
|
|
|
|
# |
23
|
|
|
|
|
|
|
# The GNU General Public License, Version 3, June 2007 |
24
|
|
|
|
|
|
|
# |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
__END__ |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=pod |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=for :stopwords Diab Jerius Smithsonian Astrophysical Observatory |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 NAME |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Data::Record::Serialize::Role::Encode - Encode Role |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 VERSION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
version 1.05 |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 DESCRIPTION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
If a role consumes this, it signals that it provides encoding |
43
|
|
|
|
|
|
|
capabilities. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 INTERNALS |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 SUPPORT |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 Bugs |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Please report any bugs or feature requests to bug-data-record-serialize@rt.cpan.org or through the web interface at: L<https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Record-Serialize> |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 Source |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Source is available at |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
https://gitlab.com/djerius/data-record-serialize |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
and may be cloned from |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
https://gitlab.com/djerius/data-record-serialize.git |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 SEE ALSO |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Please see those modules/websites for more information related to this module. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=over 4 |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=item * |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
L<Data::Record::Serialize|Data::Record::Serialize> |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=back |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 AUTHOR |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
Diab Jerius <djerius@cpan.org> |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
This software is Copyright (c) 2017 by Smithsonian Astrophysical Observatory. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
This is free software, licensed under: |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
The GNU General Public License, Version 3, June 2007 |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=cut |