Not found locally for Class::MOP::Method::Constructor. Try Google search
Class::MOP::Method::Constructor – Method Meta Object for constructors
| Use Case | Command | Description |
|---|---|---|
| Create a constructor | Class::MOP::Method::Constructor->new( metaclass => $mc, name => $name, package_name => $pkg ) |
Generates a new constructor meta-object |
| Check if inlined | $metamethod->is_inline |
Returns boolean: true if constructor is inlined |
| Get associated metaclass | $metamethod->associated_metaclass |
Returns the Class::MOP::Class object for the method |
version 2.2200
use Class::MOP::Method::Constructor;
my $constructor = Class::MOP::Method::Constructor->new(
metaclass => $metaclass,
options => {
debug => 1, # this is all for now
},
);
# calling the constructor ...
$constructor->body->execute($metaclass->name, %params);
This is a subclass of Class::MOP::Method which generates constructor methods.
Class::MOP::Method::Constructor->new(%options)This creates a new constructor object. It accepts a hash reference of options.
$metamethod->is_inlineReturns a boolean indicating whether or not the constructor is inlined.
$metamethod->associated_metaclassThis returns the Class::MOP::Class object for the method.
This software is copyright (c) 2006 by Infinity Interactive, Inc.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Generated by phpman v4.10.0-7-g98e9fd5 Author: Che Dong Under GNU General Public License
2026-09-07 02:05 @2600:1f28:365:80b0:6da3:f3b7:3cc7:cae0
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)