Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

moose::meta::method::destructor(3) [osx 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)

Check Out this Related Man Page

Moose::Meta::Method::Augmented(3pm)			User Contributed Perl Documentation		       Moose::Meta::Method::Augmented(3pm)

NAME
Moose::Meta::Method::Augmented - A Moose Method metaclass for augmented methods VERSION
version 2.0603 DESCRIPTION
This class implements method augmentation logic for the Moose "augment" keyword. The augmentation subroutine reference will be invoked explicitly using the "inner" keyword from the parent class's method definition. INHERITANCE
"Moose::Meta::Method::Augmented" is a subclass of Moose::Meta::Method. METHODS
Moose::Meta::Method::Augmented->new(%options) This constructs a new object. It accepts the following options: o class The metaclass object for the class in which the augmentation is being declared. This option is required. o name The name of the method which we are augmenting. This method must exist in one of the class's superclasses. This option is required. o method The subroutine reference which implements the augmentation. This option is required. 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.14.2 2012-06-28 Moose::Meta::Method::Augmented(3pm)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl, FilePropStore Method

Guys, anyone familiar with this FileProp Store Method.. Im having Compilation Error whenever a value is stored into the tied hash. Run time error sub STORE { my ($self, $key, $value) = @_; my $name = $self ->{name}; unless ($PROPS{$key} and -w $name){ croak "Can't... (1 Reply)
Discussion started by: killerserv
1 Replies

2. Shell Programming and Scripting

Perl + object-oriented programming help

Currently Im trying to write a program that manipulates a class-based object as part of its functionality. However, the perl compiler is complaining that the class's respective package is not returning a true value. I have done the following a) Created a new package containing the body of the... (1 Reply)
Discussion started by: JamesGoh
1 Replies

3. Shell Programming and Scripting

Method isSuccess not working right perl

Good morning all.... I have been learning Perl for about 2 months now and I guess I am getting there as much as I can however I am really stuck. I have a Perl script called postEvent.pl which uses a package called event.pm. PostEvent.pl depends on a meithod inside event.pm called isSuccess to... (0 Replies)
Discussion started by: LRoberts
0 Replies

4. UNIX for Dummies Questions & Answers

Meta charcters

Find out lines in a given file consisting of the following pattern BCAA, BCAAA, BCAAAA, BCAAAAA, BCAAAAAA (0 Replies)
Discussion started by: Phaneendra G
0 Replies

5. Homework & Coursework Questions

Meta charcters

find out lines in a given file consisting of the following pattern BCAA, BCAAA, BCAAAA, BCAAAAA, BCAAAAAA (1 Reply)
Discussion started by: Phaneendra G
1 Replies

6. Programming

Python (seleniumrequests)Class, Constructor, Method Not Working

Newbie question. I created a class: class WP(seleniumrequests.PhantomJS): def __init__(self, wpurl='https://blah.org/download/release-archive/', bwppurl='https://blah.org/plugins/browse/popular/'): self.wp=wpurl ... (5 Replies)
Discussion started by: metallica1973
5 Replies