TBONE/DBIx-Cookbook-0.09 - 10 May 2011 20:23:25 UTC - Search in distribution
- DBIx::Cookbook::Recipe::Searching::sql_lhs - SQL on the LHS of a comparison
- DBIx::Cookbook::Recipe::Searching - Recipes for searching databases
JE, short for JavaScript::Engine (imaginative, isn't it?), is a pure-Perl JavaScript engine. Here are some of its strengths: - Easy to install (no C compiler necessary*) - The parser can be extended/customised to support extra (or fewer) language fea...
SPROUT/JE-0.066 - 27 Oct 2014 00:19:07 UTC - Search in distributionThis document describes differences between the 5.005 release and the 5.6.1 release....
XSAWYERX/perl-5.32.0 - 20 Jun 2020 20:38:54 UTC - Search in distribution- perl561delta - what's new for perl v5.6.1
- perl56delta - what's new for perl v5.6.0
- perl56delta - what's new for perl v5.6.0
- 4 more results from perl »
This section is surprisingly small because the rest of the FAQ is littered with answers involving regular expressions. For example, decoding a URL and checking whether something is a number can be handled with regular expressions, but those answers a...
ETHER/perlfaq-5.20201107 - 07 Nov 2020 21:03:16 UTC - Search in distribution- perlfaq - Frequently asked questions about Perl
ttfbuilder is a font subsetting program gone wild. Its aim is to allow a user to describe a new font in terms of the glyph palette of a source font. Thus the new font may include ligatures of glyphs in the source font, or positional movements or what...
BHALLISSY/Font-TTF-Scripts-1.06 - 25 Aug 2016 01:35:31 UTC - Search in distributionTHALJEF/Perl-Critic-More-1.003 - 29 Oct 2013 16:43:05 UTC - Search in distribution
Template::Sandbox is Yet Another Templating module, designed primarily for use in a webserver environment but usable anywhere, providing a more secure "sandboxed" environment than most templating systems. The core design philosophy for Template::Sand...
SGRAHAM/Template-Sandbox-1.04 - 11 May 2010 09:08:09 UTC - Search in distributionThe "YAPE" hierarchy of modules is an attempt at a unified means of parsing and extracting content. It attempts to maintain a generic interface, to promote simplicity and reusability. The API is powerful, yet simple. The modules do tokenization (whic...
PINYAN/YAPE-HTML-1.11 - 06 Feb 2001 06:23:48 UTC - Search in distributionThe "YAPE" hierarchy of modules is an attempt at a unified means of parsing and extracting content. It attempts to maintain a generic interface, to promote simplicity and reusability. The API is powerful, yet simple. The modules do tokenization (whic...
GSULLIVAN/YAPE-Regex-4.00 - 03 Feb 2011 14:01:00 UTC - Search in distributionWraith is a simple parser combinator library (not monadic nor memoized) inspired by Boost.Spirit. It is not complete as Spirit but the fundamental operators are implemented. When applied with arguments, all operators/combinators return a function, wh...
WITHERING/Wraith-0.12 - 04 Nov 2013 06:26:50 UTC - Search in distributionHINRIK/Perl6-Doc-0.47 - 06 Dec 2010 03:25:27 UTC - Search in distribution
CWB::CEQL::Parser implements a heuristic-driven, deterministic, top-down parser for extended context-free grammars written in Perl, called a Deterministic Perl Parser (DPP). This parsing algorithm was designed specifically for automatic translation o...
AMBS/Alt-CWB-ambs-2.2.102.6 - 16 May 2017 18:30:54 UTC - Search in distributionMaple is a great tool for solving mathematical problems and creating interactive technical applications provided by Maplesoft. Its power of symbolic calculation is extremely impressive. This is a simple (but already powerful) Perl binding for Maple's...
AGENT/PerlMaple-0.07 - 20 Nov 2009 04:05:28 UTC - Search in distributionAliasing is the phenomenon where two different expressions actually refer to the same thing. Modifying one will modify the other, and if you take a reference to both, the two values are the same. Aliasing occurs in Perl for example in for-loops and s...
ZEFRAM/Data-Alias-1.21 - 08 Dec 2017 08:04:30 UTC - Search in distributionThis module was inspired by the excellent DBIx::Abstract. However, in using that module I found that what I really wanted to do was generate SQL, but still retain complete control over my statement handles and use the DBI interface. So, I set out to ...
MSTROUT/SQL-Abstract-2.000001 - 23 Jan 2021 07:24:31 UTC - Search in distribution- SQL::Abstract::Reference - Reference documentation for SQL::Abstract
- SQL::Abstract::Plugin::ExtraClauses - new/experimental additions to SQL::Abstract
- DBIx::Class::SQLMaker::Role::SQLA2Passthrough - A test of future possibilities
JKEGL/Marpa-R2-8.000000 - 17 Dec 2018 15:40:25 UTC - Search in distribution
- Marpa::R2::Event - SLIF parse events
- Marpa::R2 - Release 2 of Marpa
- Marpa::R2::Advanced::Thin - Direct access to Libmarpa
- 17 more results from Marpa-R2 »
use Math::Float128 qw(:all); $arg = ~0; # largest UV $f1 = Math::Float128->new($arg); # Assign the UV ~0 to $f2. $f2 = UVtoF128($arg); # Assign the UV ~0 to $f2. $arg = -21; $f1 = Math::Float128->new($arg); # Assign the IV -21 to $f2. $f2 = IVtoF128(...
SISYPHUS/Math-Float128-0.13 - 23 Apr 2020 12:47:59 UTC - Search in distributionThe Math::LP package provides an object oriented interface to defining and solving mixed linear/integer programs. It uses the lp_solve library as the underlying solver. Please note that this is not a two way relation. An LP is defined using Math::LP,...
WIMV/Math-LP-0.03 - 29 Oct 2001 10:28:32 UTC - Search in distribution- Math::LP::Constraint - representation of constraints in Math::LP objects