File: Utils.pm

package info (click to toggle)
perl 5.42.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 128,392 kB
  • sloc: perl: 534,963; ansic: 240,563; sh: 72,042; pascal: 6,934; xml: 2,428; yacc: 1,360; makefile: 1,197; cpp: 208; lisp: 1
file content (43 lines) | stat: -rw-r--r-- 795 bytes parent folder | download
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