views:

272

answers:

3

A google search reveals nothing useful. Does Perl have a javadoc equivalent for its modules?

(Update -- I'm aware of perdoc, but that is more like a man page, which is hard to scan to find functionality... I'm looking for a function/operation list (w/ descriptions) similar to javadoc's presentation or php's documentation)

+12  A: 
perldoc CGI

Or online: http://search.cpan.org/perldoc?CGI

innaM
Or even: http://perldoc.perl.org/CGI.html
runrig
I was more looking for a function enumeration more than a man page-like thing. Something like php's documentation that lists out all the possible functions for the module.
Mark
That's also the usual way of documenting Perl modules. However, Mr. Stein chose a different approach and my guess is that we should be grateful.
innaM
+6  A: 

If you have it installed correctly, "perldoc CGI" should do what you want. Sometimes "man CGI" will work as well.

Paul Tomblin
I have no idea why this got a downvote. It's just as correct as the accepted answer, and written simultaneously to it.
Paul Tomblin
+2  A: 

What did you google? When I search for "perl cgi" the first hit I get is the CGI.pm module documentation at perldoc.perl.org. You can also see all CPAN documentation on CPAN Search. Once displayed in your browser, it's easy to search.

brian d foy