Skip to content

Commit

Permalink
Merge pull request #135 from Dual-Life/haarg/index-module
Browse files Browse the repository at this point in the history
add Scalar::List::Utils module to match dist name
  • Loading branch information
leonerd authored Oct 18, 2024
2 parents e75f6bc + 367655a commit 6c209b5
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions lib/Scalar/List/Utils.pm
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

0 comments on commit 6c209b5

Please sign in to comment.