Ports Search

Results 2,4612,470 of 5,623 for /devel/.(0.004 seconds)
devel/IO-SessionData-1.03 (Score: 0.032514982)
Supporting module for SOAP::Lite
IO::SessionData is a supporting module for SOAP::Lite.
devel/IO-String-1.08 (Score: 0.032514982)
Simplified Perl5 module to handle I/O on in-core strings
IO::String is an IO::File (and IO::Handle) compatible class that reads data from or writes data to in-core strings. It is essentially a simplification of parts of the IO-stringy collection of modules. As such, IO::String is a replacement for IO::Scalar.
devel/Hash-AutoHash-1.17 (Score: 0.032514982)
Object-oriented access to real and tied hashes
This is yet another module that lets you access or change the elements of a hash using methods with the same name as the element's key. It follows in the footsteps of Hash::AsObject, Hash::Inflator, Data::OpenStruct::Deep, Object::AutoAccessor, and probably others. The main difference between this module and its forebears is that it supports tied hashes, in addition to regular hashes. This allows a modular division of labor: this class is generic and treats all hashes the same; any special semantics come from the tied hash.
devel/cloudabi-toolchain-1.7 (Score: 0.032514982)
C and C++ toolchain for CloudABI
Nuxi CloudABI is an application binary interface for UNIX-like operating systems built around the concept of capability-based security. In a nutshell, it means that you can run processes directly on top of a UNIX kernel while keeping complete control over the actions the process is allowed to perform. This port installs a full toolchain that can be used to compile C and C++ software against CloudABI.
devel/IO-Stty-0.03 (Score: 0.032514982)
Change and print terminal line settings
IO::Stty is a perl module that change and print terminal line settings.
devel/IO-Tee-0.64 (Score: 0.032514982)
Multiplex output to multiple output handles
The `IO::Tee' constructor, given a list of output handles, returns a tied handle that can be written to but not read from. When written to (using print or printf), it multiplexes the output to the list of handles originally passed to the constructor. As a shortcut, you can also directly pass a string or an array reference to the constructor, in which case `IO::File::new' is called for you with the specified argument or arguments.
devel/Hash-Case-1.020 (Score: 0.032514982)
Base class for hashes with key-casing requirements
Hash::Case is the base class for various classes which tie special treatment for the casing of keys. Be aware of the differences in implementation: Lower and Upper are tied native hashes: these hashes have no need for hidden fields or other assisting data structured. A case Preserve hash will actually create three hashes.
devel/Hash-Diff-0.007 (Score: 0.032514982)
Return the difference between two hashes as a hash
Hash::Diff returns the difference between two hashes as a hash.
devel/IO-Tty-1.12 (Score: 0.032514982)
Flexible I/O Perl5 module that allows manipulation of pseudo-TTYs
Perl5 module that allows creation of pseudo-tty's as well as manipulation.
devel/Hash-FieldHash-0.14 (Score: 0.032514982)
Lightweight field hash implementation
Hash::FieldHash provides the field hash mechanism which supports the inside-out technique. You may know Hash::Util::FieldHash. It's a very useful module, but too complex to understand all the functions and only available in 5.10. H::U::F::Compat is available for pre-5.10, but it seems too slow to use. This is an alternative to H::U::F with following features: Simpler interface - Hash::FieldHash provides a few functions: fieldhash() and fieldhashes(). That's enough. Higher performance - Hash::FieldHash is faster than Hash::Util::FieldHash, because its internals use simpler structures. Relic support - Although Hash::FieldHash uses a new feature introduced in Perl 5.10, the uvar magic for hashes described in "GUTS" in Hash::Util::Fieldhash, it supports Perl 5.8 using the traditional tie-hash layer.