Search results for "module:Moose::Manual"
Moose - A postmodern object system for Perl 5
Moose is an extension of the Perl 5 object system. The main goal of Moose is to make Perl 5 Object Oriented programming easier, more consistent, and less tedious. With Moose you can think more about what you want to do and less about the mechanics of...
ETHER/Moose-2.2203 - 22 Jan 2023 17:55:17 UTC
Moose::Role - The Moose Role
The concept of roles is documented in Moose::Manual::Roles. This document serves as API documentation....
ETHER/Moose-2.2203 - 22 Jan 2023 17:55:17 UTC
Array::To::Moose - Build Moose objects from a data array
As shown in the above examples, the general usage is: package MyClass; use Moose; (define Moose object(s)) ... use Array::To::Moose; ... my $data_ref = selectall_arrayref($sql); # for example my $object_ref = array_to_moose( data => $data_ref desc =>...
SAMB/Array-To-Moose-v0.0.9 - 21 Sep 2015 22:24:50 UTC
Moose::Exception - Superclass for Moose internal exceptions
This class contains attributes which are common to all Moose internal exception classes....
ETHER/Moose-2.2203 - 22 Jan 2023 17:55:17 UTC
MooseX::RememberHistory - Add the ability for attributes to remember their history
MooseX::RememberHisory provides an attribute trait ("RememberHistory") which will automagically store the values of that attribute in a related ArrayRef on each write to the trait....
JBERGER/MooseX-RememberHistory-0.001 - 01 Apr 2012 18:00:32 UTC
Moose::Meta::Attribute - The Moose attribute metaclass
This class is a subclass of Class::MOP::Attribute that provides additional Moose-specific functionality. To really understand this class, you will need to start with the Class::MOP::Attribute documentation. This class can be understood as a set of ad...
ETHER/Moose-2.2203 - 22 Jan 2023 17:55:17 UTC
Elastic::Model::TypeMap::Moose - Type maps for core Moose types
Elastic::Model::TypeMap::Moose provides mapping, inflation and deflation for the core Moose::Util::TypeConstraints and MooseX::Type::Moose types. It is loaded automatically by Elastic::Model::TypeMap::Default. Definitions are inherited from parent ty...
DRTECH/Elastic-Model-0.52 - 19 Nov 2015 16:37:52 UTC
Lab::Moose::Instrument::ZI_HDAWG - Zurich Instruments HDAWG Arbitrary Waveform Generator
AKHUETTEL/Lab-Measurement-3.872
-
22 May 2023 14:15:36 UTC
Lab::Moose::Instrument::AH2700A - Andeen-Hagerling AH2700A ultra-precision capacitance bridge
AKHUETTEL/Lab-Measurement-3.872
-
22 May 2023 14:15:36 UTC
Lab::Moose::Instrument::OI_ITC503 - Oxford Instruments ITC503 Intelligent Temperature Control
By default, two temperature sensors are used: Sensor 2 for temperatures below 1.5K and sensor 3 for temperatures above 1.5K. The used sensors can be set in the constructor, e.g. my $itc = instrument( ... high_temp_sensor => 2, low_temp_sensor => 3 );...
AKHUETTEL/Lab-Measurement-3.872 - 22 May 2023 14:15:36 UTC
MooseX::Types::Moose::MutualCoercion - Mutual coercions for common type constraints of Moose
This module packages several Moose::Util::TypeConstraints with coercions, designed to mutually coerce with the built-in and common types known to Moose....
MORIYA/MooseX-Types-Moose-MutualCoercion-0.04 - 24 Dec 2013 16:52:20 UTC
Lab::Moose::Instrument::Rigol_DG5000 - Rigol DG5000 series Function/Arbitrary Waveform Generator
AKHUETTEL/Lab-Measurement-3.872
-
22 May 2023 14:15:36 UTC
Lab::Moose::Instrument::Lakeshore340 - Lakeshore Model 340 Temperature Controller
AKHUETTEL/Lab-Measurement-3.872
-
22 May 2023 14:15:36 UTC
Lab::Moose::Instrument::Cryomagnetics_4G - Cryomagnetics 4G superconducting magnet power supply
AKHUETTEL/Lab-Measurement-3.872
-
22 May 2023 14:15:36 UTC
Lab::Moose::Instrument::KeysightDSOS604A - Keysight DSOS604A infiniium S-Series Oscilloscope.
AKHUETTEL/Lab-Measurement-3.872
-
22 May 2023 14:15:36 UTC
Perl::Critic::Policy::Moose::ProhibitLazyBuild - Avoid lazy_build
" lazy_build =" 1 > seemed like a good idea at the time, but it creates problems (see here <https://metacpan.org/pod/distribution/Moose/lib/Moose/Manual/BestPracti ces.pod#Avoid-lazy_build>). This policy will complain if it finds lazy_build => 1 in y...
DROLSKY/Perl-Critic-Moose-1.05 - 12 Sep 2016 17:20:06 UTC
Perl::Critic::Policy::Moose::ProhibitNewMethod - Don't override Moose's standard constructors.
Overriding "new()" on a Moose class causes a number of problems, including speed issues and problems with order of invocation of constructors when multiple inheritance is involved. Use "BUILDARGS()" and "BUILD()" instead....
DROLSKY/Perl-Critic-Moose-1.05 - 12 Sep 2016 17:20:06 UTC
Perl::Critic::Policy::Moose::RequireCleanNamespace - Require removing implementation details from you packages.
Anything in your namespace is part of your interface. The Moose sugar is an implementation detail and not part of what you want to support as part of your functionality, especially if you may change your implementation to not use Moose in the future....
DROLSKY/Perl-Critic-Moose-1.05 - 12 Sep 2016 17:20:06 UTC
Perl::Critic::Policy::Moose::ProhibitDESTROYMethod - Use DEMOLISH instead of DESTROY
Getting the order of destructor execution correct with inheritance involved is difficult. Let Moose take care of it for you by putting your cleanup code into a "DEMOLISH()" method instead of a "DESTROY()" method. # ok package Foo; use Moose::Role; su...
DROLSKY/Perl-Critic-Moose-1.05 - 12 Sep 2016 17:20:06 UTC