1Class::Can(3)         User Contributed Perl Documentation        Class::Can(3)
2
3
4

NAME

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

SYNOPSIS

9         use Class::Can;
10         print Dumper { Class::Can->interrogate( 'Class::Can' ) };
11         __END__
12         $VAR1 = {
13                   'interrogate' => 'Class::Can'
14         };
15

DESCRIPTION

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

AUTHOR

22       Richard Clamp <richardc@unixbeard.net>
23
25       Copyright 2004 Richard Clamp.  All Rights Reserved.
26
27       This program is free software; you can redistribute it and/or modify it
28       under the same terms as Perl itself.
29

SEE ALSO

31       Class::ISA, Devel::Symdump
32
33
34
35perl v5.34.0                      2022-01-21                     Class::Can(3)
Impressum