File Coverage

blib/lib/Format/Util.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 Format::Util;
2              
3 1     1   200292 use 5.006;
  1         2  
4 1     1   4 use strict;
  1         1  
  1         24  
5 1     1   7 use warnings FATAL => 'all';
  1         1  
  1         94  
6              
7             =head1 NAME
8              
9             Format::Util - Miscellaneous routines to do with manipulating with strings and numbers!
10              
11             =cut
12              
13             our $VERSION = '0.18';
14              
15             =head1 SYNOPSIS
16              
17             Quick summary of what the module does.
18              
19             Perhaps a little code snippet.
20              
21             use Format::Util::Numbers;
22             use Format::Util::Strings;
23              
24             ...
25              
26              
27             =head1 AUTHOR
28              
29             binary.com, C<< >>
30              
31             =head1 BUGS
32              
33             Please report any bugs or feature requests to C, or through
34             the web interface at L. I will be notified, and then you'll
35             automatically be notified of progress on your bug as I make changes.
36              
37              
38             =head1 SUPPORT
39              
40             You can find documentation for this module with the perldoc command.
41              
42             perldoc Format::Util
43              
44              
45             You can also look for information at:
46              
47             =over 4
48              
49             =item * RT: CPAN's request tracker (report bugs here)
50              
51             L
52              
53             =item * AnnoCPAN: Annotated CPAN documentation
54              
55             L
56              
57             =item * CPAN Ratings
58              
59             L
60              
61             =item * Search CPAN
62              
63             L
64              
65             =back
66              
67              
68             =head1 ACKNOWLEDGEMENTS
69              
70              
71             =head1 LICENSE AND COPYRIGHT
72              
73             Copyright 2014 binary.com.
74              
75             This program is free software; you can redistribute it and/or modify it
76             under the terms of the the Artistic License (2.0). You may obtain a
77             copy of the full license at:
78              
79             L
80              
81             Any use, modification, and distribution of the Standard or Modified
82             Versions is governed by this Artistic License. By using, modifying or
83             distributing the Package, you accept this license. Do not use, modify,
84             or distribute the Package, if you do not accept this license.
85              
86             If your Modified Version has been derived from a Modified Version made
87             by someone other than you, you are nevertheless required to ensure that
88             your Modified Version complies with the requirements of this license.
89              
90             This license does not grant you the right to use any trademark, service
91             mark, tradename, or logo of the Copyright Holder.
92              
93             This license includes the non-exclusive, worldwide, free-of-charge
94             patent license to make, have made, use, offer to sell, sell, import and
95             otherwise transfer the Package with respect to any patent claims
96             licensable by the Copyright Holder that are necessarily infringed by the
97             Package. If you institute patent litigation (including a cross-claim or
98             counterclaim) against any party alleging that the Package constitutes
99             direct or contributory patent infringement, then this Artistic License
100             to you shall terminate on the date that such litigation is filed.
101              
102             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
103             AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
104             THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
105             PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
106             YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
107             CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
108             CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
109             EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
110              
111              
112             =cut
113              
114             1; # End of Format::Util