You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-Config-Any-0.23-4.fc19.noarch
Config::Any provides a facility for Perl applications and libraries to load configuration data from multiple different file formats. It supports XML, YAML, JSON, Apache-style configuration, Windows INI files, and even Perl code.
RPMPackage perl-Compress-Raw-Zlib-2.060-2.lbn19.x86_64
The Compress::Raw::Zlib module provides a Perl interface to the zlib compression library, which is used by IO::Compress::Zlib.
RPMPackage perl-Compress-Raw-Zlib-2.060-2.fc19.armv6hl
The Compress::Raw::Zlib module provides a Perl interface to the zlib compression library, which is used by IO::Compress::Zlib.
RPMPackage perl-Compress-Raw-Bzip2-2.060-2.fc19.x86_64
This module provides a Perl interface to the bzip2 compression library. It is used by IO::Compress::Bzip2.
RPMPackage perl-Compress-Raw-Bzip2-2.060-2.fc19.armv6hl
This module provides a Perl interface to the bzip2 compression library. It is used by IO::Compress::Bzip2.
RPMPackage perl-Clone-0.34-2.fc19.armv6hl
This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. clone() takes a scalar argument and an optional parameter that can be used to limit the depth of the copy. To duplicate lists, arrays or hashes, pass them in by reference.
RPMPackage perl-Clone-0.34-2.fc19.x86_64
This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. clone() takes a scalar argument and an optional parameter that can be used to limit the depth of the copy. To duplicate lists, arrays or hashes, pass them in by reference.
RPMPackage perl-Class-XSAccessor-1.19-3.lbn19.x86_64
Class::XSAccessor implements fast read, write and read/write accessors in XS. Additionally, it can provide predicates such as has_foo() for testing whether the attribute foo is defined in the object. It only works with objects that are implemented as ordinary hashes. Class::XSAccessor::Array implements the same interface for objects that use arrays for their internal representation.
RPMPackage perl-Class-Std-Fast-0.0.8-2.lbn19.noarch
Class::Std::Fast allows you to use the beautiful API of Class::Std in a faster way than Class::Std does. You can get the object's identity via scalar-ifying our object. Getting the objects identity is still possible via the ident method.
RPMPackage perl-Class-Std-0.013-3.lbn19.noarch
This module provides tools that help to implement the "inside out object" class structure in a convenient and standard way.
RPMPackage perl-Class-Singleton-1.4-14.fc19.noarch
This is the Class::Singleton module. A Singleton describes an object class that can have only one instance in any system. An example of a Singleton might be a print spooler or system registry. This module implements a Singleton class from which other classes can be derived. By itself, the Class::Singleton module does very little other than manage the instantiation of a single object. In deriving a class from Class::Singleton, your module will inherit the Singleton instantiation method and can implement whatever specific functionality is required.
RPMPackage perl-Class-MethodMaker-2.21-1.fc19.x86_64
Class::MethodMaker solves the problem of having to continually write accessor methods for your objects that perform standard tasks.
RPMPackage perl-Class-MethodMaker-2.18-7.fc19.armv6hl
Class::MethodMaker solves the problem of having to continually write accessor methods for your objects that perform standard tasks.
RPMPackage perl-Class-Method-Modifiers-2.03-1.fc19.noarch
Method modifiers are a powerful feature from the CLOS (Common Lisp Object System) world. In its most basic form, a method modifier is just a method that calls '$self->SUPER::foo(@_)'. I for one have trouble remembering that exact invocation, so my classes seldom re-dispatch to their base classes. Very bad! 'Class::Method::Modifiers' provides three modifiers: 'before', 'around', and 'after'. 'before' and 'after' are run just before and after the method they modify, but can not really affect that original method. 'around' is run in place of the original method, with a hook to easily call that original method. See the 'MODIFIERS' section for more details on how the particular modifiers work.
RPMPackage perl-Class-Load-XS-0.06-2.fc19.x86_64
This module provides an XS implementation for portions of Class::Load. See Class::Load for API details.
RPMPackage perl-Class-Load-XS-0.06-2.fc19.armv6hl
This module provides an XS implementation for portions of Class::Load. See Class::Load for API details.
RPMPackage perl-Class-Load-0.20-3.fc19.noarch
require EXPR only accepts Class/Name.pm style module names, not Class::Name. How frustrating! For that, we provide load_class 'Class::Name'. It's often useful to test whether a module can be loaded, instead of throwing an error when it's not available. For that, we provide try_load_class 'Class::Name'. Finally, sometimes we need to know whether a particular class has been loaded. Asking %INC is an option, but that will miss inner packages and any class for which the filename does not correspond to the package name. For that, we provide is_class_loaded 'Class::Name'.
RPMPackage perl-Class-Inspector-1.28-2.lbn19.noarch
Class::Inspector allows you to get information about a loaded class. Most or all of this information can be found in other ways, but they aren't always very friendly, and usually involve a relatively high level of Perl wizardry, or strange and unusual looking code. Class::Inspector attempts to provide an easier, more friendly interface to this information.
RPMPackage perl-Class-ISA-0.36-1010.lbn19.noarch
This library provides functions that return the list (in order) of names of (super-)classes Perl would search to find a method, with no duplicates.
RPMPackage perl-Class-Factory-Util-1.7-15.fc19.noarch
This module exports utility functions that are useful for factory classes.