Moose::Object(3pm) - phpMan

Command: man perldoc info search(apropos)  


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



NAME
       Moose::Object - The base object for Moose

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 the "BUILDALL" and
       "DEMOLISHALL" methods 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)
           This method calls "$class->BUILDARGS(@_)", and then creates a new instance of the
           appropriate class. Once the instance is created, it calls
           "$instance->BUILDALL($params)".

       Moose::Object->BUILDARGS(%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->BUILDALL($params)
           This method will call every "BUILD" method in the inheritance hierarchy, starting with
           the most distant parent class and ending with the object's class.

           The "BUILD" method will be passed the hash reference returned by "BUILDARGS".

       $object->DEMOLISHALL
           This will call every "DEMOLISH" method in the inheritance hierarchy, starting with the
           object's class and ending with the most distant parent. "DEMOLISHALL" and "DEMOLISH"
           will receive a boolean indicating whether or not we are currently in global
           destruction.

       $object->does($role_name)
           This returns true if the object does the given role.

       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.

BUGS
       All complex software has bugs lurking in it, and this module is no exception. If you find
       a bug please either email me, or add the bug to cpan-RT.

AUTHOR
       Stevan Little <stevan AT iinteractive.com>

COPYRIGHT AND LICENSE
       Copyright 2006-2009 by Infinity Interactive, Inc.

       <http://www.iinteractive.com>

       This library is free software; you can redistribute it and/or modify it under the same
       terms as Perl itself.



perl v5.10.0                                2009-11-18                         Moose::Object(3pm)

Generated by $Id: phpMan.php,v 4.49 2006/02/26 13:18:18 chedong Exp $ Author: Che Dong
On Apache
Under GNU General Public License
2012-05-24 19:47 @38.107.179.236 Crawled by CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
Valid XHTML 1.0!Valid CSS!