| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package CXC::Number; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: A namespace for modules which deal with numbers. |
|
4
|
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
277762
|
use v5.28; |
|
|
1
|
|
|
|
|
4
|
|
|
6
|
1
|
|
|
1
|
|
7
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
31
|
|
|
7
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
6
|
|
|
|
1
|
|
|
|
|
108
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = '0.13'; |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# |
|
12
|
|
|
|
|
|
|
# This file is part of CXC-Number |
|
13
|
|
|
|
|
|
|
# |
|
14
|
|
|
|
|
|
|
# This software is Copyright (c) 2019 by Smithsonian Astrophysical Observatory. |
|
15
|
|
|
|
|
|
|
# |
|
16
|
|
|
|
|
|
|
# This is free software, licensed under: |
|
17
|
|
|
|
|
|
|
# |
|
18
|
|
|
|
|
|
|
# The GNU General Public License, Version 3, June 2007 |
|
19
|
|
|
|
|
|
|
# |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=for :stopwords Diab Jerius Smithsonian Astrophysical Observatory |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
CXC::Number - A namespace for modules which deal with numbers. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 VERSION |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
version 0.13 |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The following are known: |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=over |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=item L<CXC::Number::Grid> |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
A representation of a grid of numbers, with the ability to join and |
|
46
|
|
|
|
|
|
|
overlay grids. Useful for binning data. |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item L<CXC::Number::Sequence> |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
A namespace and module for dealing with sequences of numbers, often |
|
51
|
|
|
|
|
|
|
constructed so that they are useful for binning data. |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=back |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 INTERNALS |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 SUPPORT |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 Bugs |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
Please report any bugs or feature requests to bug-cxc-number@rt.cpan.org or through the web interface at: L<https://rt.cpan.org/Public/Dist/Display.html?Name=CXC-Number> |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 Source |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Source is available at |
|
66
|
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
https://gitlab.com/djerius/cxc-number |
|
68
|
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
and may be cloned from |
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
https://gitlab.com/djerius/cxc-number.git |
|
72
|
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
74
|
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
Please see those modules/websites for more information related to this module. |
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=over 4 |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=item * |
|
80
|
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
L<CXC::Number::Grid|CXC::Number::Grid> |
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=item * |
|
84
|
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
L<CXC::Number::Sequence|CXC::Number::Sequence> |
|
86
|
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=back |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head1 AUTHOR |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
Diab Jerius <djerius@cpan.org> |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
94
|
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
This software is Copyright (c) 2019 by Smithsonian Astrophysical Observatory. |
|
96
|
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
This is free software, licensed under: |
|
98
|
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
The GNU General Public License, Version 3, June 2007 |
|
100
|
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=cut |