{
    "mode": "info",
    "parameter": "Moose::Object",
    "section": "",
    "url": "https://www.chedong.com/phpMan.php/info/Moose%3A%3AObject/json",
    "generated": "2026-07-05T13:24:53Z",
    "sections": {
        "Moose::Object(3pm)    User Contributed Perl Documentation   Moose::Object(3pm)": {
            "content": "",
            "subsections": []
        },
        "NAME": {
            "content": "Moose::Object - The base object for Moose\n",
            "subsections": []
        },
        "VERSION": {
            "content": "version 2.2200\n",
            "subsections": []
        },
        "DESCRIPTION": {
            "content": "This class is the default base class for all Moose-using classes. When\nyou \"use Moose\" in this class, your class will inherit from this class.\n\nIt provides a default constructor and destructor, which run all of the\n\"BUILD\" and \"DEMOLISH\" methods in the inheritance hierarchy,\nrespectively.\n\nYou don't actually need to inherit from this in order to use Moose, but\nit makes it easier to take advantage of all of Moose's features.\n",
            "subsections": []
        },
        "METHODS": {
            "content": "Moose::Object->new(%params|$params)\nThis method calls \"$class->BUILDARGS(@)\", and then creates a new\ninstance of the appropriate class. Once the instance is created, it\ncalls \"$instance->BUILD($params)\" for each \"BUILD\" method in the\ninheritance hierarchy.\n\nMoose::Object->BUILDARGS(%params|$params)\nThe default implementation of this method accepts a hash or hash\nreference of named parameters. If it receives a single argument that\nisn't a hash reference it throws an error.\n\nYou can override this method in your class to handle other types of\noptions passed to the constructor.\n\nThis method should always return a hash reference of named options.\n\n$object->does($rolename)\nThis returns true if the object does the given role.\n\n$object->DOES($classorrolename)\nThis is a Moose role-aware implementation of \"DOES\" in UNIVERSAL.\n\nThis is effectively the same as writing:\n\n$object->does($name) || $object->isa($name)\n\nThis method will work with Perl 5.8, which did not implement\n\"UNIVERSAL::DOES\".\n\n$object->dump($maxdepth)\nThis is a handy utility for Data::Dumpering an object. By default,\nthere is no maximum depth.\n\n$object->DESTROY\nA default destructor is provided, which calls\n\"$instance->DEMOLISH($inglobaldestruction)\" for each \"DEMOLISH\"\nmethod in the inheritance hierarchy.\n",
            "subsections": []
        },
        "BUGS": {
            "content": "See \"BUGS\" in Moose for details on reporting bugs.\n",
            "subsections": []
        },
        "AUTHORS": {
            "content": "o   Stevan Little <stevan@cpan.org>\n\no   Dave Rolsky <autarch@urth.org>\n\no   Jesse Luehrs <doy@cpan.org>\n\no   Shawn M Moore <sartak@cpan.org>\n\no    ' (Yuval Kogman) <nothingmuch@woobling.org>\n\no   Karen Etheridge <ether@cpan.org>\n\no   Florian Ragwitz <rafl@debian.org>\n\no   Hans Dieter Pearcey <hdp@cpan.org>\n\no   Chris Prather <chris@prather.org>\n\no   Matt S Trout <mstrout@cpan.org>\n",
            "subsections": []
        },
        "COPYRIGHT AND LICENSE": {
            "content": "This software is copyright (c) 2006 by Infinity Interactive, Inc.\n\nThis is free software; you can redistribute it and/or modify it under\nthe same terms as the Perl 5 programming language system itself.\n\nperl v5.34.0                      2022-02-06                Moose::Object(3pm)",
            "subsections": []
        }
    },
    "summary": "Moose::Object - The base object for Moose",
    "flags": [],
    "examples": [],
    "see_also": []
}