The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PDL::Index - an index of PDL documentation

DESCRIPTION

A meta document listing the documented PDL modules and the PDL manual dcouments

PDL manuals

EOPOD

print POD "=over ",$#mans+1,"\n\n"; for (@mans) { my $ref = $_->[1]->{Ref}; $ref =~ s/Manual:/$_-[0]>:/; print POD "=item $_-[0]>\n\n$ref\n\n"; }

print POD << 'EOPOD';

PDL modules

EOPOD

print POD "=over ",$#mods+1,"\n\n"; for (@mods) { my $ref = $_->[1]->{Ref}; if( $_->[0] eq 'PDL'){ # special case needed to find the main PDL.pm file. $ref =~ s/Module:/PDL::PDL:/; print POD "=item PDL::PDL\n\n$ref\n\n"; next; } $ref =~ s/Module:/$_-[0]>:/; print POD "=item $_-[0]>\n\n$ref\n\n"; }

print POD << "EOPOD";

HISTORY

Automatically generated by scantree.pl for PDL version $PDL::VERSION.

EOPOD

close POD;

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 67:

=back without =over

Around line 87:

=back without =over