Aside from trying
perldoc
individually for any CPAN module that takes my fancy or going through the file system and loo
On Linux/Unix I use this simple command:
perl -e 'print qx/find $_ -name "*.pm"/ foreach ( @INC );'
It scans all folder in @INC and looks for any *.pm file.
@INC