File Coverage

blib/lib/Data/Sah/Type/num.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             use strict;
3 9     9   3559  
  9         17  
  9         227  
4             use Role::Tiny;
5 9     9   39 use Role::Tiny::With;
  9         160  
  9         55  
6 9     9   1127  
  9         16  
  9         915  
7             with 'Data::Sah::Type::BaseType';
8             with 'Data::Sah::Type::Comparable';
9             with 'Data::Sah::Type::Sortable';
10              
11             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
12             our $DATE = '2022-09-30'; # DATE
13             our $DIST = 'Data-Sah'; # DIST
14             our $VERSION = '0.913'; # VERSION
15              
16             1;
17             # ABSTRACT: num type
18              
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Data::Sah::Type::num - num type
27              
28             =head1 VERSION
29              
30             This document describes version 0.913 of Data::Sah::Type::num (from Perl distribution Data-Sah), released on 2022-09-30.
31              
32             =for Pod::Coverage ^(clause_.+|clausemeta_.+)$
33              
34             =head1 HOMEPAGE
35              
36             Please visit the project's homepage at L<https://metacpan.org/release/Data-Sah>.
37              
38             =head1 SOURCE
39              
40             Source repository is at L<https://github.com/perlancar/perl-Data-Sah>.
41              
42             =head1 AUTHOR
43              
44             perlancar <perlancar@cpan.org>
45              
46             =head1 CONTRIBUTING
47              
48              
49             To contribute, you can send patches by email/via RT, or send pull requests on
50             GitHub.
51              
52             Most of the time, you don't need to build the distribution yourself. You can
53             simply modify the code, then test via:
54              
55             % prove -l
56              
57             If you want to build the distribution (e.g. to try to install it locally on your
58             system), you can install L<Dist::Zilla>,
59             L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
60             L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
61             Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
62             that are considered a bug and can be reported to me.
63              
64             =head1 COPYRIGHT AND LICENSE
65              
66             This software is copyright (c) 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 by perlancar <perlancar@cpan.org>.
67              
68             This is free software; you can redistribute it and/or modify it under
69             the same terms as the Perl 5 programming language system itself.
70              
71             =head1 BUGS
72              
73             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Sah>
74              
75             When submitting a bug or request, please include a test-file or a
76             patch to an existing test-file that illustrates the bug or desired
77             feature.
78              
79             =cut