Graph - graph data structures and algorithms
Non-Description This module is not for drawing or rendering any sort of *graphics* or *images*, business, visualization, or otherwise. Description Instead, this module is for creating *abstract data structures* called graphs, and for doing various op...
ETJ/Graph-0.9725 - 10 Oct 2021 20:06:24 UTC - Search in distribution- Graph::Traversal - traverse graphs
- Graph::BitMatrix - create and manipulate a V x V bit matrix of graph G
- Graph::AdjacencyMap - map of graph vertices or edges
- 6 more results from Graph »
perlport - Writing portable Perl
Perl runs on numerous operating systems. While most of them share much in common, they also have their own unique features. This document is meant to help you to find out what constitutes portable Perl code. That way once you make a decision to write...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC - Search in distribution- perl58delta - what is new for perl v5.8.0
- perlhist - the Perl history records
- perltie - how to hide an object class in a simple variable
- 4 more results from perl »
perlhist - Registro histórico de versiones de Perl
ENELL/POD2-ES-5.24.0.5
-
01 Jan 2017 21:24:12 UTC
-
Search in distribution
Storable - persistence for Perl data structures
The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time. It can be used in the regular procedural way by c...
NWCLARK/Storable-3.25 - 30 Aug 2021 08:39:08 UTC - Search in distribution
Time::HiRes - High resolution alarm, sleep, gettimeofday, interval timers
The "Time::HiRes" module implements a Perl interface to the "usleep", "nanosleep", "ualarm", "gettimeofday", and "setitimer"/"getitimer" system calls, in other words, high resolution time and timers. See the "EXAMPLES" section below and the test scri...
ATOOMIC/Time-HiRes-1.9764 - 10 Aug 2020 22:23:42 UTC - Search in distribution
Math::Trig - trigonometric functions
"Math::Trig" defines many trigonometric functions not defined by the core Perl which defines only the "sin()" and "cos()". The constant pi is also defined as are a few convenience functions for angle conversions, and *great circle formulas* for spher...
ZEFRAM/Math-Complex-1.59 - 01 Feb 2012 23:39:04 UTC - Search in distribution- Math::Complex - complex numbers and associated mathematical functions
IO::Zlib - IO:: style interface to Compress::Zlib
"IO::Zlib" provides an IO:: style interface to Compress::Zlib and hence to gzip/zlib compressed files. It provides many of the same methods as the IO::Handle interface. Starting from IO::Zlib version 1.02, IO::Zlib can also use an external gzip comma...
TOMHUGHES/IO-Zlib-1.11 - 13 Sep 2020 11:41:23 UTC - Search in distribution
Time::PT - objects to store an instant in time
By default, Time::PT stores time descriptions precise to 60ths- of-a-second (0.016667 seconds). The groundwork has been laid for sub-millisecond precision to be included later. This module has been adapted from the Time::Piece module written by Matt ...
PIP/Time-PT-1.2.565EHOV - 05 Jun 2005 21:31:08 UTC - Search in distribution- Time::Fields - abstract objects to store distinct time fields
- Time::Frame - objects to store a length of time
App::perlstyle - App::Context Perl Style Guide
SPADKINS/App-Context-0.968
-
09 Jun 2010 21:33:19 UTC
-
Search in distribution
BSD::Resource - BSD process resource limit and priority functions
getrusage ($usertime, $systemtime, $maxrss, $ixrss, $idrss, $isrss, $minflt, $majflt, $nswap, $inblock, $oublock, $msgsnd, $msgrcv, $nsignals, $nvcsw, $nivcsw) = getrusage($ru_who); $rusage = getrusage($ru_who); # $ru_who argument is optional; it def...
JHI/BSD-Resource-1.2911 - 09 Apr 2017 23:51:05 UTC - Search in distribution
Set::Scalar - basic set operations
Creating $s = Set::Scalar->new; $s = Set::Scalar->new(@members); $t = $s->clone; $t = $s->copy; # Clone of clone. $t = $s->empty_clone; # Like clone() but with no members. Modifying $s->insert(@members); $s->delete(@members); $s->invert(@members); # ...
DAVIDO/Set-Scalar-1.29 - 24 Mar 2014 14:50:23 UTC - Search in distribution- Set::Scalar::Valued - valued sets
- Set::Scalar::Universe - universes for set members
- Set::Scalar::Base - base class for Set::Scalar
- 4 more results from Set-Scalar »
Time::Piece - Object Oriented time objects
This module replaces the standard "localtime" and "gmtime" functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime/gmtime in the way documented in perlfunc will still return what you ex...
ESAYM/Time-Piece-1.3401 - 06 Apr 2020 22:42:38 UTC - Search in distribution
PApp::Storable - persistence for Perl data structures
The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time. It can be used in the regular procedural way by c...
MLEHMANN/PApp-2.2 - 17 Feb 2020 11:04:59 UTC - Search in distribution
String::Approx - Perl extension for approximate matching (fuzzy matching)
String::Approx lets you match and substitute strings approximately. With this you can emulate errors: typing errorrs, speling errors, closely related vocabularies (colour color), genetic mutations (GAG ACT), abbreviations (McScot, MacScot). NOTE: Str...
JHI/String-Approx-3.28 - 16 Apr 2017 08:52:13 UTC - Search in distribution
Set::Bag - bag (multiset) class
This module implements a simple bag (multiset) class. A bag may contain one or more instances of elements. One may add and delete one or more instances at a time. If one attempts to delete more instances than there are to delete from, the default beh...
DAVIDO/Set-Bag-1.012 - 10 Apr 2013 19:12:16 UTC - Search in distribution
CPANPLUS::Module - CPAN module objects for CPANPLUS
"CPANPLUS::Module" creates objects from the information in the source files. These can then be used to query and perform actions on, like fetching or installing. These objects should only be created internally. For "fake" objects, there's the "CPANPL...
BINGOS/CPANPLUS-0.9914 - 23 Nov 2021 19:30:10 UTC - Search in distribution
Time::Object - Object Oriented time objects
This module replaces the standard localtime and gmtime functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime/gmtime in the way documented in perlfunc will still return what you expect...
MSERGEANT/Time-Object-1.00 - 22 Oct 2001 13:11:40 UTC - Search in distribution
Devel::CallStack - record the calling stacks
The Devel::CallStack is meant for code developers wondering why their code is running so slow. One possible reason is simply too many subroutine or method calls since they are not cheap in Perl. The Devel::CallStack records the calling stacks, how ma...
JHI/Devel-CallStack-0.19 - 27 Jan 2005 18:13:55 UTC - Search in distribution
Acme::Ook - the Ook! programming language
As described in http://www.dangermouse.net/esoteric/ook.html Since the word "ook" can convey entire ideas, emotions, and abstract thoughts depending on the nuances of inflection, Ook! has no need of comments. The code itself serves perfectly well to ...
JHI/Acme-Ook-0.11 - 07 Dec 2006 14:22:12 UTC - Search in distribution