-
-
03 May 2022 03:31:09 UTC
- Distribution: PDL
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (230 / 64 / 2)
- Kwalitee
Bus factor: 4- % Coverage
- License: perl_5
- Perl: v5.10.0
- Activity
24 month- Tools
- Download (2.92MB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
PDL::Index - an index of PDL documentation
DESCRIPTION
A meta document listing the documented PDL modules and the PDL manual documents
PDL manuals
EOPOD
print $podfh "=over 4\n\n"; for (@mans) { my $ref = $_->[2]->{Ref}; $ref =~ s/Manual:/$_-[0]> -/; print $podfh "=item *\n\n$ref\n\n"; }
print $podfh << 'EOPOD';
PDL scripts
EOPOD
print $podfh "=over 4\n\n"; for (@scripts) { my $ref = $_->[2]->{Ref}; $ref =~ s/Script:/$_-[0]|PDL::$_->[0]> -/; print $podfh "=item *\n\n$ref\n\n"; }
print $podfh << 'EOPOD';
PDL modules
EOPOD
print $podfh "=over 4\n\n"; for (@mods) { my $ref = $_->[2]->{Ref}; next unless $_->[0] =~ /^PDL/; if( $_->[0] eq 'PDL'){ # special case needed to find the main PDL.pm file. $ref =~ s/Module:/PDL -/; print $podfh "=item *\n\n$ref\n\n"; next; } $ref =~ s/Module:/$_-[0]> -/; print $podfh "=item *\n\n$ref\n\n"; }
print $podfh << "EOPOD";
HISTORY
Automatically generated by scantree.pl for PDL version $PDL::VERSION.
EOPOD
close $podfh;
#add the newly-created PDL::Index to the doc database $onldc->scan($outindex,$opt_v) if (-s $outindex); $onldc->savedb(); 1;
3 POD Errors
The following errors were encountered while parsing the POD:
- Around line 75:
=back without =over
- Around line 90:
=back without =over
- Around line 111:
=back without =over
Module Install Instructions
To install PDL, copy and paste the appropriate command in to your terminal.
cpanm PDL
perl -MCPAN -e shell install PDL
For more information on module installation, please visit the detailed CPAN module installation guide.