diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-01-29 12:06:05 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-02-18 13:16:51 +0100 |
commit | 39376b252267e5dd20227d65acf493c07bb4dd4b (patch) | |
tree | 3b4320bd57e9141d5ef96821e0ed6bb83eb5151f /lib | |
parent | 49a1179c845e0d8d5e9560131c1f3ac064d3cbdc (diff) | |
download | perl-39376b252267e5dd20227d65acf493c07bb4dd4b.tar.gz |
Terser code in Pod::Functions to generate $Type_Description and @Type_Order.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Pod/Functions.pm | 75 |
1 files changed, 27 insertions, 48 deletions
diff --git a/lib/Pod/Functions.pm b/lib/Pod/Functions.pm index 1132d2e8df..1069c43c33 100644 --- a/lib/Pod/Functions.pm +++ b/lib/Pod/Functions.pm @@ -61,54 +61,33 @@ require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(%Kinds %Type %Flavor %Type_Description @Type_Order); -our(%Kinds, %Type, %Flavor); - -our %Type_Description = ( - 'ARRAY' => 'Functions for real @ARRAYs', - 'Binary' => 'Functions for fixed-length data or records', - 'File' => 'Functions for filehandles, files, or directories', - 'Flow' => 'Keywords related to the control flow of your Perl program', - 'HASH' => 'Functions for real %HASHes', - 'I/O' => 'Input and output functions', - 'LIST' => 'Functions for list data', - 'Math' => 'Numeric functions', - 'Misc' => 'Miscellaneous functions', - 'Modules' => 'Keywords related to Perl modules', - 'Network' => 'Fetching network info', - 'Objects' => 'Keywords related to classes and object-orientation', - 'Process' => 'Functions for processes and process groups', - 'Regexp' => 'Regular expressions and pattern matching', - 'Socket' => 'Low-level socket functions', - 'String' => 'Functions for SCALARs or strings', - 'Switch' => 'Keywords related to the switch feature', - 'SysV' => 'System V interprocess communication functions', - 'Time' => 'Time-related functions', - 'User' => 'Fetching user and group info', - 'Namespace' => 'Keywords related to scoping', -); - -our @Type_Order = qw{ - String - Regexp - Math - ARRAY - LIST - HASH - I/O - Binary - File - Flow - Switch - Namespace - Misc - Process - Modules - Objects - Socket - SysV - User - Network - Time +our(%Kinds, %Type, %Flavor, %Type_Description, @Type_Order); + +foreach ( + [String => 'Functions for SCALARs or strings'], + [Regexp => 'Regular expressions and pattern matching'], + [Math => 'Numeric functions'], + [ARRAY => 'Functions for real @ARRAYs'], + [LIST => 'Functions for list data'], + [HASH => 'Functions for real %HASHes'], + ['I/O' => 'Input and output functions'], + [Binary => 'Functions for fixed-length data or records'], + [File => 'Functions for filehandles, files, or directories'], + [Flow => 'Keywords related to the control flow of your Perl program'], + [Switch => 'Keywords related to the switch feature'], + [Namespace => 'Keywords related to scoping'], + [Misc => 'Miscellaneous functions'], + [Process => 'Functions for processes and process groups'], + [Modules => 'Keywords related to Perl modules'], + [Objects => 'Keywords related to classes and object-orientation'], + [Socket => 'Low-level socket functions'], + [SysV => 'System V interprocess communication functions'], + [User => 'Fetching user and group info'], + [Network => 'Fetching network info'], + [Time => 'Time-related functions'], + ) { + push @Type_Order, $_->[0]; + $Type_Description{$_->[0]} = $_->[1]; }; while (<DATA>) { |