Class::Can.3pm

Langue: en

Version: 2009-02-26 (fedora - 05/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

Class::Can - inspect a class/method and say what it can do (and why)

SYNOPSIS

   use Class::Can;
   print Dumper { Class::Can->interrogate( 'Class::Can' ) };
   __END__
   $VAR1 = {
             'interrogate' => 'Class::Can'
   };
 
 

DESCRIPTION

Class::Can interrogates the object heirarchy of a package to return a hash detailling what methods the class could dispatch (as the key), and the package it found it in (as the value).

AUTHOR

Richard Clamp <richardc@unixbeard.net> Copyright 2004 Richard Clamp. All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Class::ISA, Devel::Symdump