Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

moose::object(3) [osx man page]

Moose::Object(3)					User Contributed Perl Documentation					  Moose::Object(3)

NAME
Moose::Object - The base object for Moose VERSION
version 2.0604 DESCRIPTION
This class is the default base class for all Moose-using classes. When you "use Moose" in this class, your class will inherit from this class. It provides a default constructor and destructor, which run all of the "BUILD" and "DEMOLISH" methods in the inheritance hierarchy, respectively. You don't actually need to inherit from this in order to use Moose, but it makes it easier to take advantage of all of Moose's features. METHODS
Moose::Object->new(%params|$params) This method calls "$class->BUILDARGS(@_)", and then creates a new instance of the appropriate class. Once the instance is created, it calls "$instance->BUILD($params)" for each "BUILD" method in the inheritance hierarchy. Moose::Object->BUILDARGS(%params|$params) The default implementation of this method accepts a hash or hash reference of named parameters. If it receives a single argument that isn't a hash reference it throws an error. You can override this method in your class to handle other types of options passed to the constructor. This method should always return a hash reference of named options. $object->does($role_name) This returns true if the object does the given role. $object->DOES($class_or_role_name) This is a a Moose role-aware implementation of "DOES" in UNIVERSAL. This is effectively the same as writing: $object->does($name) || $object->isa($name) This method will work with Perl 5.8, which did not implement "UNIVERSAL::DOES". $object->dump($maxdepth) This is a handy utility for "Data::Dumper"ing an object. By default, the maximum depth is 1, to avoid making a mess. $object->DESTROY A default destructor is provided, which calls "$instance->DEMOLISH($in_global_destruction)" for each "DEMOLISH" method in the inheritance hierarchy. BUGS
See "BUGS" in Moose for details on reporting bugs. AUTHOR
Moose is maintained by the Moose Cabal, along with the help of many contributors. See "CABAL" in Moose and "CONTRIBUTORS" in Moose for details. COPYRIGHT AND LICENSE
This software is copyright (c) 2012 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. perl v5.16.2 2012-09-19 Moose::Object(3)

Check Out this Related Man Page

Moose::Meta::Method::Destructor(3)			User Contributed Perl Documentation			Moose::Meta::Method::Destructor(3)

NAME
Moose::Meta::Method::Destructor - Method Meta Object for destructors VERSION
version 2.0604 DESCRIPTION
This class is a subclass of Class::MOP::Method::Inlined that provides Moose-specific functionality for inlining destructors. To understand this class, you should read the the Class::MOP::Method::Inlined documentation as well. INHERITANCE
"Moose::Meta::Method::Destructor" is a subclass of Moose::Meta::Method and Class::MOP::Method::Inlined. METHODS
Moose::Meta::Method::Destructor->new(%options) This constructs a new object. It accepts the following options: o package_name The package for the class in which the destructor is being inlined. This option is required. o name The name of the destructor method. This option is required. o metaclass The metaclass for the class this destructor belongs to. This is optional, as it can be set later by calling "$metamethod->attach_to_class". Moose::Meta;:Method::Destructor->is_needed($metaclass) Given a Moose::Meta::Class object, this method returns a boolean indicating whether the class needs a destructor. If the class or any of its parents defines a "DEMOLISH" method, it needs a destructor. BUGS
See "BUGS" in Moose for details on reporting bugs. AUTHOR
Moose is maintained by the Moose Cabal, along with the help of many contributors. See "CABAL" in Moose and "CONTRIBUTORS" in Moose for details. COPYRIGHT AND LICENSE
This software is copyright (c) 2012 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. perl v5.16.2 2012-09-19 Moose::Meta::Method::Destructor(3)
Man Page