| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package IPC::PrettyPipe::Queue::Element; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: role for an element in an B |
|
4
|
|
|
|
|
|
|
|
|
5
|
21
|
|
|
21
|
|
21941
|
use Moo::Role; |
|
|
21
|
|
|
|
|
66
|
|
|
|
21
|
|
|
|
|
203
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
21
|
|
|
21
|
|
7531
|
use namespace::clean; |
|
|
21
|
|
|
|
|
56
|
|
|
|
21
|
|
|
|
|
130
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = '0.13'; |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has last => ( |
|
12
|
|
|
|
|
|
|
is => 'rwp', |
|
13
|
|
|
|
|
|
|
default => sub { 0 }, |
|
14
|
|
|
|
|
|
|
init_arg => undef, |
|
15
|
|
|
|
|
|
|
); |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
has first => ( |
|
18
|
|
|
|
|
|
|
is => 'rwp', |
|
19
|
|
|
|
|
|
|
default => sub { 0 }, |
|
20
|
|
|
|
|
|
|
init_arg => undef, |
|
21
|
|
|
|
|
|
|
); |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
# |
|
27
|
|
|
|
|
|
|
# This file is part of IPC-PrettyPipe |
|
28
|
|
|
|
|
|
|
# |
|
29
|
|
|
|
|
|
|
# This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. |
|
30
|
|
|
|
|
|
|
# |
|
31
|
|
|
|
|
|
|
# This is free software, licensed under: |
|
32
|
|
|
|
|
|
|
# |
|
33
|
|
|
|
|
|
|
# The GNU General Public License, Version 3, June 2007 |
|
34
|
|
|
|
|
|
|
# |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
__END__ |