Ports Search

Results 1,9411,950 of 5,623 for /devel/.(0.003 seconds)
devel/gdb-7.3.1 (Score: 0.032514982)
GNU GDB for the AVR target
This is the GNU Debugger GDB, configured for the AVR microcontroller target. This debugger cannot really be used standalone, but is useful in connection with either AVaRICE (http://avarice.sourceforge.net/) or simulavr (http://www.freesoftware.fsf.org/simulavr/).
devel/avra-1.3.0 (Score: 0.032514982)
Macro Assembler for Atmel AVR microcontrollers
avra is an GNU GPL'ed assembler for the Atmel AVR microcontrollers. See the file COPYING for more information regarding the license.
devel/Class-Mixin-1.00 (Score: 0.032514982)
API for aliasing methods to/from other classes
Class::Mixin provides a way to mix methods from one class into another, such that the target class can use both its methods as well as those of the source class. The primary advantage is that the behavior of a class can be modified to effectively be another class without changing any of the calling code -- just requires using the new class that mixes into the original.
devel/Class-Multimethods-Pure-0.13 (Score: 0.032514982)
Method-ordered multimethod dispatch
You can define multimethods with the "multi" declarator: use Class::Multimethods::Pure; multi collide => ('Bullet', 'Ship') => sub { my ($a, $b) = @_; ... }; multi collide => ('Ship', 'Asteroid') => sub { my ($a, $b) = @_; ... }; It is usually wise to put such declarations within a BEGIN block, so they behave more like Perl treats subs (you can call them without parentheses and you can use them before you define them).
devel/Class-Data-ConfigHash-0.00002 (Score: 0.032514982)
Add Catalyst-Style Config To Your Class
Add Catalyst-Style Config To Your Class
devel/Class-Default-1.51 (Score: 0.032514982)
Static calls apply to a default instantiation
Class::Default provides a mechanism to allow your class to take static method calls and apply it to a default instantiation of an object. It provides a flexibility to an API that allows it to be used more comfortably in different situations. This technique appears to be especially useful when writing modules that you want to be used in either a single use or a persistent environment. In a CGI like environment, you want the simplicity of a static interface. You can call Class-method> directly, without having to pass an instantiation around constantly.
devel/Class-ErrorHandler-0.04 (Score: 0.032514982)
Base class for error handling
Class::ErrorHandler provides an error-handling mechanism that's generic enough to be used as the base class for a variety of OO classes.
devel/Class-OOorNO-0.011 (Score: 0.032514982)
Perl module that give your module classic AND OO interfaces
Class::OOorNO Class::OOorNO helps your module handle the input for its subroutines whether called in object-oriented style (as object methods or class methods with the arrow syntax ->), or in functional programming style (as subroutines imported to the caller's namespace via Exporter).
devel/Class-Generate-1.15 (Score: 0.032514982)
Simplify the creation of class hierarchies
Class::Generate is a Perl5 module to simplify creating class hierarchies. It offers typed or untyped scalar, array, and hash members, required members, private members, methods (both instance and class), and other common features of object- oriented software development. Of course, you can implement all these things without a special module, but doing it via Class::Generate is much, much more concise. And furthermore, it's much less error prone: if you are using Perl's -w flag, Class::Generate will catch many class specification and usage errors.
devel/Class-Handle-1.07 (Score: 0.032514982)
Create objects that are handles to classes
Class related functionality in Perl is broken up into a variety of different modules. Class::Handle attempts to provide a convenient object wrapper around the various different types of functions that can be performed on a class. Currently, Class::Handle provides what is effectively a combined API from UNIVERSAL, Class::ISA and Class::Inspector for obtaining information about a Class, and some additional task methods, such as load to common tasks relating to classes.