1Class::MOP::Object(3) User Contributed Perl DocumentationClass::MOP::Object(3)
2
3
4
6 Class::MOP::Object - Base class for metaclasses
7
9 version 2.2201
10
12 This class is a very minimal base class for metaclasses.
13
15 This class provides a few methods which are useful in all metaclasses.
16
17 Class::MOP::???->meta
18 This returns a Class::MOP::Class object.
19
20 $metaobject->dump($max_depth)
21 This method uses Data::Dumper to dump the object. You can pass an
22 optional maximum depth, which will set $Data::Dumper::Maxdepth. The
23 default maximum depth is 1.
24
25 $metaclass->throw_error($message)
26 This method calls "_throw_exception" in Class::MOP::Mixin internally,
27 with an object of class Moose::Exception::Legacy.
28
30 • Stevan Little <stevan@cpan.org>
31
32 • Dave Rolsky <autarch@urth.org>
33
34 • Jesse Luehrs <doy@cpan.org>
35
36 • Shawn M Moore <sartak@cpan.org>
37
38 • יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
39
40 • Karen Etheridge <ether@cpan.org>
41
42 • Florian Ragwitz <rafl@debian.org>
43
44 • Hans Dieter Pearcey <hdp@cpan.org>
45
46 • Chris Prather <chris@prather.org>
47
48 • Matt S Trout <mstrout@cpan.org>
49
51 This software is copyright (c) 2006 by Infinity Interactive, Inc.
52
53 This is free software; you can redistribute it and/or modify it under
54 the same terms as the Perl 5 programming language system itself.
55
56
57
58perl v5.36.0 2022-07-22 Class::MOP::Object(3)