-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from Dual-Life/haarg/index-module
add Scalar::List::Utils module to match dist name
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package Scalar::List::Utils; | ||
use strict; | ||
use warnings; | ||
|
||
our $VERSION = "1.63"; | ||
$VERSION =~ tr/_//d; | ||
|
||
1; | ||
|
||
__END__ | ||
=head1 NAME | ||
Scalar::List::Utils - A distribution of general-utility subroutines | ||
=head1 SYNOPSIS | ||
use Scalar::Util qw(blessed); | ||
use List::Util qw(any); | ||
=head1 DESCRIPTION | ||
C<Scalar::List::Utils> does nothing on its own. It is packaged with several | ||
useful modules. | ||
=head1 MODULES | ||
=head2 L<List::Util> | ||
L<List::Util> contains a selection of useful subroutines for operating on lists | ||
of values. | ||
=head2 L<Scalar::Util> | ||
L<Scalar::Util> contains a selection of useful subroutines for interrogating | ||
or manipulating scalar values. | ||
=head2 L<Sub::Util> | ||
L<Sub::Util> contains a selection of useful subroutines for interrogating | ||
or manipulating subroutine references. | ||
=cut |