Ports Search

Results 1,8811,890 of 5,623 for /devel/.(0.003 seconds)
devel/Coro-6.51.1 (Score: 0.032514982)
Coroutine process abstraction for perl
This module collection manages coroutines. Coroutines are similar to threads but don't run in parallel. In this module, coroutines are defined as "callchain + lexical variables + @_ + $_ + $@ + $^W + C stack), that is, a coroutine has its own callchain, its own set of lexicals and its own set of perl's most important global variables.
devel/Class-Adapter-1.08 (Score: 0.032514982)
Perl implementation of the "Adapter" Design Pattern
The Class::Adapter class is intended as an abstract base class for creating any sort of class or object that follows the Adapter pattern.
devel/Class-AlzaboWrapper-0.14 (Score: 0.032514982)
Higher level wrapper around Alzabo Row and Table objects
This module is intended for use as a base class when you are writing a class that wraps Alzabo's table and row classes.
devel/Class-AutoClass-1.56 (Score: 0.032514982)
Create get and set methods and simplify object initialization
This is yet another module that generates standard 'get' and 'set' methods for Perl classes. It also handles initialization of object and class data from parameter lists or defaults, and arranges for object creation and initialization to occur in top-down, textbook order even in the presence of multiple inheritance.
devel/Class-Autouse-2.01 (Score: 0.032514982)
Defer loading of one or more classes
Class::Autouse allows you to specify a class the will only load when a method of that class is called. For large classes that might not be used during the running of a program, such as Date::Manip, this can save you large amounts of memory, and decrease the script load time.
devel/Class-Accessor-0.34 (Score: 0.032514982)
Automated accessor generation
This module automagically generates accessor/mutators for your class.
devel/Class-C3-Adopt-NEXT-0.14 (Score: 0.032514982)
Make NEXT suck less
Make NEXT suck less
devel/Class-C3-Componentised-1.0010 (Score: 0.032514982)
Load mix-ins or components to your C3-based class
This will inject base classes to your module using the Class::C3 method resolution order. Please note: these are not plugins that can take precedence over methods declared in MyModule. If you want something like that, consider MooseX::Object::Pluggable.
devel/Class-ArrayObjects-1.03 (Score: 0.032514982)
Utility class for array based objects
This module makes it easy to build classes using array based objects. It's main goal is to allow one to create less memory hungry programs, notably in memory-sensitive contexts such as mod_perl. This module is little more than a cute way of defining constant subs in your own package. Constant subs are very useful when dealing with array based objects because they allow one to access array slots by name instead of by index.
devel/Class-Closure-0.302 (Score: 0.032514982)
Encapsulated, declarative classes in Perl
Class::Closure is a package that makes creating Perl classes less cumbersome. You can think of it as a more featureful Class::Struct.