line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Pod::Elemental::Autochomp 0.103006; |
2
|
|
|
|
|
|
|
# ABSTRACT: a paragraph that chomps set content |
3
|
|
|
|
|
|
|
|
4
|
13
|
|
|
13
|
|
6356
|
use namespace::autoclean; |
|
13
|
|
|
|
|
31
|
|
|
13
|
|
|
|
|
81
|
|
5
|
13
|
|
|
13
|
|
800
|
use Moose::Role; |
|
13
|
|
|
|
|
28
|
|
|
13
|
|
|
|
|
285
|
|
6
|
|
|
|
|
|
|
|
7
|
13
|
|
|
13
|
|
58386
|
use Pod::Elemental::Types qw(ChompedString); |
|
13
|
|
|
|
|
31
|
|
|
13
|
|
|
|
|
107
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
#pod =head1 OVERVIEW |
10
|
|
|
|
|
|
|
#pod |
11
|
|
|
|
|
|
|
#pod This role exists primarily to simplify elements produced by the Pod5 |
12
|
|
|
|
|
|
|
#pod transformer. |
13
|
|
|
|
|
|
|
#pod |
14
|
|
|
|
|
|
|
#pod =cut |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# has '+content' => ( |
17
|
|
|
|
|
|
|
# coerce => 1, |
18
|
|
|
|
|
|
|
# isa => ChompedString, |
19
|
|
|
|
|
|
|
# ); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=encoding UTF-8 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Pod::Elemental::Autochomp - a paragraph that chomps set content |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 VERSION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
version 0.103006 |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 OVERVIEW |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
This role exists primarily to simplify elements produced by the Pod5 |
40
|
|
|
|
|
|
|
transformer. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 PERL VERSION |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This library should run on perls released even a long time ago. It should work |
45
|
|
|
|
|
|
|
on any version of perl released in the last five years. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
48
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
49
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
50
|
|
|
|
|
|
|
the minimum required perl. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 AUTHOR |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Ricardo SIGNES <cpan@semiotic.systems> |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo SIGNES. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
61
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |