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

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

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