-
-
28 May 2022 00:26:10 UTC
- Distribution: perl
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (2152)
- Testers
- Kwalitee
Bus factor: 14- License: perl_5
- Activity
24 month- Tools
- Download (19.29MB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- perl5-porters@perl.org
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Pod::Functions - Group Perl's functions a la perlfunc.pod
SYNOPSIS
use Pod::Functions; my @misc_ops = @{ $Kinds{ 'Misc' } }; my $misc_dsc = $Type_Description{ 'Misc' };
or
perl /path/to/lib/Pod/Functions.pm
This will print a grouped list of Perl's functions, like the "Perl Functions by Category" in perlfunc section.
DESCRIPTION
It exports the following variables:
- %Kinds
-
This holds a hash-of-lists. Each list contains the functions in the category the key denotes.
- %Type
-
In this hash each key represents a function and the value is the category. The category can be a comma separated list.
- %Flavor
-
In this hash each key represents a function and the value is a short description of that function.
- %Type_Description
-
In this hash each key represents a category of functions and the value is a short description of that category.
- @Type_Order
-
This list of categories is used to produce the same order as the "Perl Functions by Category" in perlfunc section.
Module Install Instructions
To install less, copy and paste the appropriate command in to your terminal.
cpanm less
perl -MCPAN -e shell install less
For more information on module installation, please visit the detailed CPAN module installation guide.