1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
package Scalar::List::Utils;
use strict;
use warnings;
our $VERSION = "1.69";
$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
|