| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Iterator::Flex; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Iterators with flexible behaviors |
|
4
|
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
226758
|
use v5.28; |
|
|
1
|
|
|
|
|
5
|
|
|
6
|
1
|
|
|
1
|
|
8
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
33
|
|
|
7
|
1
|
|
|
1
|
|
10
|
use warnings; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
111
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '0.33'; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
# |
|
13
|
|
|
|
|
|
|
# This file is part of Iterator-Flex |
|
14
|
|
|
|
|
|
|
# |
|
15
|
|
|
|
|
|
|
# This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. |
|
16
|
|
|
|
|
|
|
# |
|
17
|
|
|
|
|
|
|
# This is free software, licensed under: |
|
18
|
|
|
|
|
|
|
# |
|
19
|
|
|
|
|
|
|
# The GNU General Public License, Version 3, June 2007 |
|
20
|
|
|
|
|
|
|
# |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__END__ |