1Class::Can(3) User Contributed Perl Documentation Class::Can(3)
2
3
4
6 Class::Can - inspect a class/method and say what it can do (and why)
7
9 use Class::Can;
10 print Dumper { Class::Can->interrogate( 'Class::Can' ) };
11 __END__
12 $VAR1 = {
13 'interrogate' => 'Class::Can'
14 };
15
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
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
31 Class::ISA, Devel::Symdump
32
33
34
35perl v5.28.1 2019-02-02 Class::Can(3)