Ports Search

Results 3,4813,490 of 5,623 for /devel/.(0.005 seconds)
devel/Want-0.29 (Score: 0.032514982)
Generalisation of wantarray
This module generalises the mechanism of the wantarray function, allowing a function to determine in some detail how its return value is going to be immediately used.
devel/Tie-Simple-1.04 (Score: 0.032514982)
Variable ties made easier: much, much, much easier
This module adds the ability to quickly create new types of tie objects without creating a complete class. It does so in such a way as to try and make the programmers life easier when it comes to single-use ties that I find myself wanting to use from time-to-time. The Tie::Simple package is actually a front-end to other classes which really do all the work once tied, but this package does the dwimming to automatically figure out what you're trying to do. I've tried to make this as intuitive as possible and dependent on other bits of Perl where I can to minimize the need for documentation and to make this extra, extra spiffy.
devel/Tie-ToObject-0.03 (Score: 0.032514982)
Tie to an existing object
Tie::ToObject - Tie to an existing object.
devel/Time-Clock-1.03 (Score: 0.032514982)
Twenty-four hour clock objects with nanosecond precision
A Time::Clock object is a twenty-four hour clock with nanosecond precision and wrap-around. It is a clock only; it has absolutely no concept of dates. Vagaries of date/time such as leap seconds and daylight savings time are unsupported.
devel/Time-Crontab-0.02 (Score: 0.032514982)
Perl extension to parse crontab date and time field
Time::Crontab is a parser for crontab date and time field. And it provides simple matcher.
devel/Time-Duration-Parse-0.13 (Score: 0.032514982)
Parse string that represents time duration
Time::Duration::Parse is a module to parse human readable duration strings like 2 minutes and 3 seconds to seconds. It does the opposite of duration_exact function in Time::Duration and is roundtrip safe. So, the following is always true. use Time::Duration::Parse; use Time::Duration; my $seconds = int rand 100000; is( parse_duration(duration_exact($seconds)), $seconds );
devel/parent-0.234 (Score: 0.032514982)
Establish an ISA relationship with base classes at compile time
Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to package Baz; BEGIN { require Foo; require Bar; push @ISA, qw(Foo Bar); }
devel/Time-Duration-1.20 (Score: 0.032514982)
Rounded or exact English expression of durations
This module provides functions for expressing durations in rounded or exact terms.
devel/Time-HiRes-1.9726 (Score: 0.032514982)
Perl5 module implementing High resolution time, sleep, and alarm
Time::HiRes module: High resolution time, sleep, and alarm. Implement usleep, ualarm, and gettimeofday for Perl, as well as wrappers to implement time, sleep, and alarm that know about non-integral seconds.
devel/Time-Interval-1.232 (Score: 0.032514982)
Converts time intervals of days, hours, minutes, and seconds
This is a perl module for dealing with time intervals. Among other things, this module can tell you the number of hours, minutes, and seconds elapsed between two dates.