33719c3450f918877c1b9e83e868b31d917cfe2c
[perl-indexdata-utils.git] / lib / IndexData / Utils.pm
1 package IndexData::Utils;
2
3 use 5.018002;
4 use strict;
5 use warnings;
6
7 require Exporter;
8 use AutoLoader qw(AUTOLOAD);
9
10 our @ISA = qw(Exporter);
11
12 # Items to export into callers namespace by default. Note: do not export
13 # names by default without a very good reason. Use EXPORT_OK instead.
14 # Do not simply export all your public functions/methods/constants.
15
16 # This allows declaration       use IndexData::Utils ':all';
17 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18 # will save memory.
19 our %EXPORT_TAGS = ( 'all' => [ qw(
20         
21 ) ] );
22
23 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
24
25 our @EXPORT = qw(
26         
27 );
28
29 our $VERSION = '0.01';
30
31
32 # Preloaded methods go here.
33
34 # Autoload methods go after =cut, and are processed by the autosplit program.
35
36 1;
37 __END__
38 # Below is stub documentation for your module. You'd better edit it!
39
40 =head1 NAME
41
42 IndexData::Utils - Perl extension for blah blah blah
43
44 =head1 SYNOPSIS
45
46   use IndexData::Utils;
47   blah blah blah
48
49 =head1 DESCRIPTION
50
51 Stub documentation for IndexData::Utils, created by h2xs. It looks like the
52 author of the extension was negligent enough to leave the stub
53 unedited.
54
55 Blah blah blah.
56
57 =head2 EXPORT
58
59 None by default.
60
61
62
63 =head1 SEE ALSO
64
65 Mention other useful documentation such as the documentation of
66 related modules or operating system documentation (such as man pages
67 in UNIX), or any relevant external documentation such as RFCs or
68 standards.
69
70 If you have a mailing list set up for your module, mention it here.
71
72 If you have a web site set up for your module, mention it here.
73
74 =head1 AUTHOR
75
76 Mike Taylor, E<lt>mike@E<gt>
77
78 =head1 COPYRIGHT AND LICENSE
79
80 Copyright (C) 2014 by Mike Taylor
81
82 This library is free software; you can redistribute it and/or modify
83 it under the same terms as Perl itself, either Perl version 5.18.2 or,
84 at your option, any later version of Perl 5 you may have available.
85
86
87 =cut