| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Data::Record::Serialize::Role::Encode; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Encode Role |
|
4
|
|
|
|
|
|
|
|
|
5
|
27
|
|
|
27
|
|
647753
|
use v5.12; |
|
|
27
|
|
|
|
|
138
|
|
|
6
|
27
|
|
|
27
|
|
625
|
use Moo::Role; |
|
|
27
|
|
|
|
|
12944
|
|
|
|
27
|
|
|
|
|
244
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
27
|
|
|
27
|
|
15343
|
use namespace::clean; |
|
|
27
|
|
|
|
|
14398
|
|
|
|
27
|
|
|
|
|
264
|
|
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '2.02'; |
|
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__ |