Packages — P (Page 7 of 31)

Packages menu:

Browse alphabetically

0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

perl-rpc-epc-service 0.0.11

RPC::EPC::Service enables to connect the other process with the S-expression protocol, like the Swank protocol of the SLIME. …

perl-safe-isa 1.000010

This module allows you to call isa, can, does, and DOES safely on things that may not be objects. …

perl-scalar-list-utils 1.53

This package contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the…

perl-scalar-string 0.003

`Scalar::String' is about the string part of plain Perl scalars. A scalar has a string value, which is notionally a sequence of Unicode codepoints but may be internally encoded in either…

perl-scope-guard 0.21

This module provides a convenient way to perform cleanup or other forms of resource management at the end of a scope. It is particularly useful when dealing with exceptions: the Scope::Guard…

perl-sdl 2.548

SDL Perl is a package of Perl modules that provide both functional and object oriented interfaces to the Simple DirectMedia Layer for Perl5. This package takes some liberties with the SDL…

perl-search-xapian 1.2.25.2

Search::Xapian wraps most methods of most Xapian classes. The missing classes and methods should be added in the future. It also provides a simplified, more 'perlish' interface to some common…

perl-set-infinite 0.65

Set::Infinite is a set theory module for infinite sets. …

perl-set-intspan 1.19

`Set::IntSpan' manages sets of integers. It is optimized for sets that have long runs of consecutive integers. …

perl-set-object 1.39

Set::Object provides efficient sets, unordered collections of Perl objects without duplicates for scalars and references. …

perl-set-scalar 1.29

The first priority of Set::Scalar is to be a convenient interface to sets (as in: unordered collections of Perl scalars). While not designed to be slow or big, neither has it…

perl-shell-command 0.06

Shell::Command is a thin wrapper around ExtUtils::Command. …

perl-snowball-norwegian 1.2

Lingua::Stem::Snowball::No is a perl port of the norwegian stemmer at http://snowball.tartarus.org. …

perl-snowball-swedish 1.2

Lingua::Stem::Snowball::Se is a perl port of the swedish stemmer at http://snowball.sourceforge.net. …

perl-socket6 0.29

Socket6 binds the IPv6 related part of the C socket header definitions and structure manipulators for Perl. …

perl-software-license 0.103014

This package provides templated software licenses. …

perl-sort-key 1.33

This Perl module provides various functions to quickly sort arrays by one or multiple calculated keys. …

perl-sort-naturally 1.03

This module exports two functions, `nsort' and `ncmp'; they are used in implementing a "natural sorting" algorithm. Under natural sorting, numeric substrings are compared numerically, and other word-characters are compared lexically. …

perl-specio 0.38

The Specio distribution provides classes for representing type constraints and coercion, along with syntax sugar for declaring them. Note that this is not a proper type system for Perl. Nothing…

perl-spiffy 0.46

Spiffy is a framework and methodology for doing object oriented (OO) programming in Perl. Spiffy combines the best parts of Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class. …

perl-sql-abstract 1.87

This module was inspired by the excellent DBIx::Abstract. While based on the concepts used by DBIx::Abstract, the concepts used have been modified to make the SQL easier to generate from Perl…

perl-sql-abstract-classic 1.91

This module is nearly identical to `SQL::Abstract' 1.81, and exists to preserve the ability of users to opt into the new way of doing things in later versions according to their own…

perl-sql-splitstatement 1.00020

This module tries to split any SQL code, even including non-standard extensions, into the atomic statements it is composed of. …

perl-sql-tokenizer 0.24

SQL::Tokenizer is a tokenizer for SQL queries. It does not claim to be a parser or query verifier. It just creates sane tokens from a valid SQL query. …

perl-statistics-basic 1.6611

This package provides basic statistics functions like `median()', `mean()', `variance()' and `stddev()'. …

perl-stream-buffered 0.03

Stream::Buffered is a buffer class to store arbitrary length of byte strings and then get a seekable filehandle once everything is buffered. It uses PerlIO and/or temporary file to save the…

perl-strictures 2.000006

Strictures turns on strict and make all warnings fatal when run from within a source-controlled directory. …

perl-strictures 1.005005

Strictures turns on strict and make all warnings fatal when run from within a source-controlled directory. …

perl-string-camelcase 0.04

This module may be used to convert from under_score text to CamelCase and back again. …

perl-string-copyright 0.003006

String::Copyright Parses common styles of copyright statements and serializes in normalized format. …

perl-string-escape 2010.002

This module provides a flexible calling interface to some frequently-performed string conversion functions, including applying and expanding standard C/Unix-style backslash escapes like and , wrapping and removing double-quotes, and truncating to fit within…

perl-string-formatter 0.102084

`String::Formatter' is a tool for building sprintf-like formatting routines. It supports named or positional formatting, custom conversions, fixed string interpolation, and simple width-matching. …

perl-string-print 0.15

This module inserts values into (translated) strings. It provides `printf' and `sprintf' alternatives via both an object-oriented and a functional interface. …

perl-string-rewriteprefix 0.007

This module allows you to rewrite strings based on a set of known prefixes. …

perl-string-shellquote 1.04

`shell-quote' lets you pass arbitrary strings through the shell so that they won't be changed. …

perl-string-toidentifier-en 0.12

This module provides a utility method, "to_identifier" for converting an arbitrary string into a readable representation using the ASCII subset of "\w" for use as an identifier in a computer program. …

perl-sub-exporter 0.987

Sub::Exporter provides a sophisticated alternative to Exporter.pm for custom-built routines. …

perl-sub-exporter-progressive 0.001013

Sub::Exporter is an incredibly powerful module, but with that power comes great responsibility, as well as some runtime penalties. This module is a "Sub::Exporter" wrapper that will let your users just…

perl-sub-identify 0.14

Sub::Identify allows you to retrieve the real name of code references. …

perl-sub-info 0.002

This package provides tools for inspecting subroutines in Perl. …

perl-sub-install 0.928

Sub::Install makes it easy to install subroutines into packages without the unsightly mess of C<no strict> or typeglobs lying about where just anyone can see them. …

perl-sub-name 0.21

Assigns a new name to referenced sub. If package specification is omitted in the name, then the current package is used. The return value is the sub. …

perl-sub-quote 2.006006

Sub::Quote provides an efficient generation of subroutines via string eval. …

perl-sub-uplevel 0.24

Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. …

perl-super 1.20190531

When subclassing a class, you may occasionally want to dispatch control to the superclass---at least conditionally and temporarily. This module provides nicer equivalents to the native Perl syntax for calling superclasses,…

perl-svg 2.84

SVG is a Perl module which generates a nested data structure containing the DOM representation of an SVG (Scalable Vector Graphics) image. Using SVG, you can generate SVG objects, embed other…

perl-switch 2.17

Switch is a Perl module which implements a generalized case mechanism. The module augments the standard Perl syntax with two new statements: `switch' and `case'. …

perl-sys-cpu 0.61

Sys::CPU is a module for counting the number of CPUs on a system, and determining their type and clock speed. …

perl-sys-hostname-long 1.5

Sys::Hostname::Long tries very hard to get the full hostname of a system. …

perl-sys-syscall 0.25

Sys::Syscall allows one to use epoll and sendfile system calls from Perl. Support is mostly Linux-only for now, but other syscalls/OSes are planned for the future. …

perl-task-weaken 1.06

One recurring problem in modules that use Scalar::Util's weaken function is that it is not present in the pure-perl variant. If Scalar::Util is not available at all, it will issue a…

perl-template-timer 1.00

Template::Timer provides inline profiling of the template processing in Perl code. …

perl-template-tiny 1.12

`Template::Tiny' is a reimplementation of a subset of the functionality from Template Toolkit in as few lines of code as possible. It is intended for use in light-usage, low-memory, or low-cpu templating situations,…

perl-template-toolkit 2.28

The Template Toolkit is a collection of modules which implement an extensible template processing system. It was originally designed and remains primarily useful for generating dynamic web content, but it can…

perl-term-encoding 0.02

Term::Encoding is a simple module to detect the encoding of the current terminal expects in various ways. …

perl-term-progressbar 2.17

Term::ProgressBar provides a simple progress bar on the terminal, to let the user know that something is happening, roughly how much stuff has been done, and maybe an estimate at how long…

perl-term-progressbar-quiet 0.31

Term::ProgressBar is a wonderful module for showing progress bars on the terminal. This module acts very much like that module when it is run interactively. However, when it is not…

perl-term-progressbar-simple 0.03

Term::ProgressBar::Simple tells you how much work has been done, how much is left to do, and estimate how long it will take. …

perl-term-readkey 2.38

This module, ReadKey, provides ioctl control for terminals so the input modes can be changed (thus allowing reads of a single character at a time), and also provides non-blocking reads of stdin,…

perl-term-readline-gnu 1.36

This module implements an interface to the GNU Readline library. It gives you input line editing facilities, input history management facilities, completion facilities, etc. Term::ReadLine::Gnu is upwards compatible with Term::ReadLine. …

perl-term-size-any 0.002

This is a unified interface to retrieve terminal size. It loads one module of a list of known alternatives, each implementing some way to get the desired terminal information. This…

perl-term-size-perl 0.031

This is yet another implementation of `Term::Size'. Now in pure Perl, with the exception of a C probe run at build time. …

perl-term-table 0.008

This module is able to generically format rows of data into tables. …

perl-test-base 0.89

Test::Base gives a way to trivially write your own test framework base class. It concentrates on offering reusable data driven patterns, so that you can write tests with a minimum of…

perl-test-checkdeps 0.010

This module provides a test that checks all dependencies have been installed properly. …

perl-test-class 0.50

`Test::Class' provides a simple way of creating classes and objects to test your code in an xUnit style. Built using `Test::Builder', it was designed to work with other `Test::Builder' based modules (`Test::More', `Test::Differences',…

perl-test-class-most 0.08

`Test::Class::Most' provides some more convenience when using `Test::Class'. …

perl-test-cleannamespaces 0.24

This module lets you check your module's namespaces for imported functions you might have forgotten to remove with namespace::autoclean or namespace::clean and are therefore available to be called as methods, which usually…

perl-test-command 0.11

This module provides routines for testing the exit status, standard output and standard error of external commands. …

perl-test-cpan-meta 0.25

This module was written to ensure that a META.yml file meets the specification. …

perl-test-cpan-meta-json 0.16

This module was written to ensure that a META.json file meets the specification. …

perl-test-deep 1.120

Test::Deep compares two structures by going through each level, ensuring that the values match, that arrays and hashes have the same elements and that references are blessed into the correct class. …

perl-test-differences 0.67

This module exports three test functions and four diff-style functions. …

perl-test-dir 1.16

This modules provides a collection of test utilities for directory attributes. …

perl-test-directory 0.041

Testing code can involve making sure that files are created and deleted as expected. Doing this manually can be error prone, as it's easy to forget a file, or miss that…

perl-test-distmanifest 1.014

`Test::DistManifest' provides a simple method of testing that a `MANIFEST' file matches its distribution. …

perl-test-distribution 2.00

When used in a test script `Test::Distribution' goes through all the modules in your distribution, checks their POD, checks that they compile successfully and checks that they all define a $VERSION. …

perl-test-eol 2.00

`Test::EOL' lets you check for the presence of trailing whitespace and/or windows line endings in your perl code. …

perl-test-exception 0.43

This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. …

perl-test-failwarnings 0.008

Test::FailWarnings adds test failures if warnings are caught. …

perl-test-fatal 0.014

Test::Fatal is an alternative to the popular Test::Exception. It does much less, but should allow greater flexibility in testing exception-throwing code with about the same amount of typing. …

perl-test-file 1.443

`Test::File' provides a collection of test utilities for file attributes. …

perl-test-file-contents 0.23

{Test::File::Contents …

perl-test-file-sharedir-dist 1.001002

This module creates a Fake ShareDir for your modules for testing. …

perl-test-filename 0.03

Test::Filename provides functions to convert all path separators automatically. …

perl-test-files 0.14

This library provides functions to enable testing of files and directories. For instance, the `file_ok' helper can test whether the contents of a file is equal to a particular string. …

perl-test-harness 3.42

Simple test harness which allows tests to be run and results automatically aggregated and output to STDOUT. …

perl-test-leaktrace 0.16

Test::LeakTrace provides several functions that trace memory leaks. This module scans arenas, the memory allocation system, so it can detect any leaked SVs in given blocks. …

perl-test-longstring 0.17

This module provides some drop-in replacements for the string comparison functions of Test::More, but which are more suitable when you test against long strings. …

perl-test-manifest 2.021

`Test::Manifest' overrides the default test file order. Instead of running all of the t/*.t files in ASCII-betical order, it looks in the t/test_manifest file to find out which tests you want…

perl-test-memory-cycle 1.06

`Test::Memory::Cycle' is built on top of `Devel::Cycle' to give you an easy way to check for these circular references. use Test::Memory::Cycle; …

perl-test-mockmodule 0.171.0

`Test::MockModule' lets you temporarily redefine subroutines in other packages for the purposes of unit testing. A `Test::MockModule' object is set up to mock subroutines for a given module. The mocked…

perl-test-mockobject 1.20191002

Test::MockObject allows you to create objects that conform to particular interfaces with very little code. You don't have to reimplement the behavior, just the input and the output. …

perl-test-mocktime 0.17

This module was created to enable test suites to test code at specific points in time. Specifically it overrides localtime, gmtime and time at compile time and then relies on the…

perl-test-more-utf8 0.05

`Test::More::UTF8' is a simple extension for the widely used `Test::More' module. By default, it will do a `binmode `:utf8'' on all of `Test::Builder''s output handles thus enabling the easy use flagged…

perl-test-most 0.35

This module provides the most commonly used testing functions, along with automatically turning on strict and warning and gives a bit more fine-grained control over test suites. …

perl-test-needs 0.002005

`Test::Needs' allows you to skip test scripts if modules are not available. The requested modules will be loaded, and optionally have their versions checked. If the module is missing, the…

perl-test-notabs 2.02

`Test::NoTabs' lets you check the presence of tabs in your perl code. …

perl-test-nowarnings 1.04

This modules causes any warnings during testing to be captured and stored. It automatically adds an extra test that will run when your script ends to check that there were no…

perl-test-number-delta 1.06

At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the…

Packages menu:

Browse alphabetically

0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z