File Coverage

blib/lib/CXC/Number/Sequence/Fixed.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package CXC::Number::Sequence::Fixed;
2              
3             # ABSTRACT: CXC::Number::Sequence with arbitrary values
4              
5 4     4   382394 use v5.28;
  4         15  
6              
7 4     4   1235 use Moo;
  4         18806  
  4         30  
8              
9             our $VERSION = '0.13';
10              
11 4     4   4489 use namespace::clean;
  4         29348  
  4         38  
12              
13             extends 'CXC::Number::Sequence';
14              
15             has '+_raw_elements' => ( required => 1, );
16              
17              
18             1;
19              
20             #
21             # This file is part of CXC-Number
22             #
23             # This software is Copyright (c) 2019 by Smithsonian Astrophysical Observatory.
24             #
25             # This is free software, licensed under:
26             #
27             # The GNU General Public License, Version 3, June 2007
28             #
29              
30             __END__
31              
32             =pod
33              
34             =for :stopwords Diab Jerius Smithsonian Astrophysical Observatory
35              
36             =head1 NAME
37              
38             CXC::Number::Sequence::Fixed - CXC::Number::Sequence with arbitrary values
39              
40             =head1 VERSION
41              
42             version 0.13
43              
44             =head1 SYNOPSIS
45              
46             use CXC::Number::Sequence::Fixed;
47              
48             $sequence = CXC::Number::Sequence::Fixed->new( edges => \@edges, %options );
49              
50             =head1 DESCRIPTION
51              
52             This subclass of L<CXC::Number::Sequence> specifies the exact elements in a sequence.
53              
54             =head1 INTERNALS
55              
56             =head1 SUPPORT
57              
58             =head2 Bugs
59              
60             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>
61              
62             =head2 Source
63              
64             Source is available at
65              
66             https://gitlab.com/djerius/cxc-number
67              
68             and may be cloned from
69              
70             https://gitlab.com/djerius/cxc-number.git
71              
72             =head1 SEE ALSO
73              
74             Please see those modules/websites for more information related to this module.
75              
76             =over 4
77              
78             =item *
79              
80             L<CXC::Number|CXC::Number>
81              
82             =back
83              
84             =head1 AUTHOR
85              
86             Diab Jerius <djerius@cpan.org>
87              
88             =head1 COPYRIGHT AND LICENSE
89              
90             This software is Copyright (c) 2019 by Smithsonian Astrophysical Observatory.
91              
92             This is free software, licensed under:
93              
94             The GNU General Public License, Version 3, June 2007
95              
96             =cut