Search results for "module:Ref"
Ref::List - Punctuation-free dereferencing of arrayrefs and hashrefs
This tiny module exports a single function, "list", which dereferences the arrayref or hashref passed to it as an argument. "list $argument" is basically a synonym for "@{$argument}", but is less awkward when $argument is a longer expression part of ...
PSHANGOV/Ref-List-0.002 - 01 Apr 2011 08:27:20 UTC
Ref::Util - Utility functions for checking references
Ref::Util introduces several functions to help identify references in a smarter (and usually faster) way. In short: # conventional approach # with Ref::Util ref( $foo ) eq 'ARRAY' is_plain_arrayref( $foo ) use Scalar::Util qw( reftype ); reftype( $fo...
ARC/Ref-Util-0.204 - 19 Apr 2018 11:23:10 UTC
Acme::Ref - unstringify a reference
Allows Jaap to do twisted things. http://zoidberg.sf.net/...
RLZWART/Acme-Ref-0.03 - 19 Jun 2003 18:56:45 UTC
Ref::Store - Store objects, index by object, tag by objects - all without leaking.
Ref::Store provides an efficient and worry-free way to index objects by arbitrary data - possibly other objects, simple scalars, or whatever. It relies on magic and such to ensure that objects you put in the lookup table are not maintained there unle...
MNUNBERG/Ref-Store-0.20 - 30 Dec 2011 01:26:21 UTC
Quote::Ref - qw for array/hash references
This module provides the new keywords "qwa" and "qwh". qwa "qwa" is a quoting operator like q or qq. It works like "qw" in that it parses its contents as a list of whitespace separated words, but instead of turning them into a list, it turns them int...
MAUKE/Quote-Ref-0.04 - 12 Jan 2023 07:49:58 UTC
Cache::Ref - Memory only cache of live references
Unlike CHI which attempts to address the problem of caching things persistently, this module implements in memory caching, designed primarily for shared references in memory. This collection of classes implements a number of semi related algorithms....
BRUNOV/Cache-Ref-0.04 - 23 Sep 2010 19:55:24 UTC
Ref::Explicit - Keywords to create arrayrefs and hashrefs
This module exports keywords that provide an explicit syntax for creation of arrayrefs and hashrefs in contexts where the ordinary perl syntax leads to a punctuation overdose....
PSHANGOV/Ref-Explicit-0.001 - 04 Apr 2011 13:02:26 UTC
Storable::Ref - Persistent automatic variables vi Storable
VANY/Storable-Ref-1.1
-
27 Feb 2009 13:32:23 UTC
UNIVERSAL::ref - Turns ref() into a multimethod
This module changes the behavior of the builtin function ref(). If ref() is called on an object that has requested an overloaded ref, the object's "->ref" method will be called and its return value used instead....
JJORE/UNIVERSAL-ref-0.14 - 23 Jan 2011 19:17:29 UTC
Class::Ref - Automatic OO wrapping of container references
Class::Ref provides an OO wrapping layer around Hash and Array references. Part of the magic is that it does this deeply and across array/hash boundaries....
MYDMNSN/Class-Ref-0.06 - 23 Nov 2017 02:43:23 UTC
Ref::Util::XS - XS implementation for Ref::Util
Ref::Util::XS is the XS implementation of Ref::Util, which provides several functions to help identify references in a more convenient way than the usual approach of examining the return value of "ref". You should use Ref::Util::XS by installing Ref:...
XSAWYERX/Ref-Util-XS-0.117 - 31 Jan 2018 11:47:31 UTC
YAML::PP::Ref - Generated Reference Parser backend for YAML::PP
The <https://yaml.org/> YAML Specification can be used to generate a YAML Parser from it. Ingy has done that for several languages, and the one for Perl can be found here: <https://metacpan.org/dist/YAML-Parser>. This module exchanges the default YAM...
TINITA/YAML-PP-Ref-0.02 - 08 Mar 2022 18:39:25 UTC
Ref::Util::PP - pure-Perl version of Ref::Util
This module provides a pure-Perl implementation of the functions in Ref::Util. Ref::Util:PP will be used automatically if Ref::Util is installed on a system with no C compiler, but you can force its usage by setting either $Ref::Util::IMPLEMENTATION ...
ARC/Ref-Util-0.204 - 19 Apr 2018 11:23:10 UTC
Cache::Ref::CAR - CLOCK with Adaptive Replacement
This algorithm is an implementation of http://www.almaden.ibm.com/cs/people/dmodha/clockfast.pdf. See also Cache::Ref::CART which is probably more appropriate for random access work loads. CAR balances between an MFU like policy and an MRU like polic...
BRUNOV/Cache-Ref-0.04 - 23 Sep 2010 19:55:24 UTC
Astro::VEX::Ref - VEX (VLBI Experiment Definition) reference class
GSB/Astro-VEX-0.001
-
11 Oct 2021 18:17:39 UTC
Heap::Elem::Ref - Object Reference Heap Elements
Heap::Elem::Ref is used to wrap object reference values into an element that can be managed on a heap. Each referenced object must have a method *cmp* which can compare itself with any of the other objects that have references on the same heap. These...
JMM/Heap-0.80 - 28 Apr 2007 18:19:57 UTC
Cache::Ref::LRU - Least recently used expiry policy
This is an implementation of the least recently used expiry policy. It provides both an array and a doubly linked list based implementation. See Cache::Ref for a discussion....
BRUNOV/Cache-Ref-0.04 - 23 Sep 2010 19:55:24 UTC
Cache::Ref::LIFO - Saves entries until full, discarding subsequent sets.
This is a very naive cache algorithm, it saves cache sets until the cache is full, at which point all additional saves which aren't a value update are discarded immediately. For very predictable workflows this is potentially a good fit, provided the ...
BRUNOV/Cache-Ref-0.04 - 23 Sep 2010 19:55:24 UTC