The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "module:Tie::Hash::Method"

Tie::Hash::Method - Tied hash with specific methods overriden by callbacks River stage two • 2 direct dependents • 13 total dependents

Tie::Hash::Method provides a way to create a tied hash with specific overriden behaviour without having to create a new class to do it. A tied hash with no methods overriden is functionally equivalent to a normal hash. Each method in a standard tie c...

YVES/Tie-Hash-Method-0.02 - 24 Jul 2008 22:22:04 UTC

Tie::Sub - Tying a subroutine, function or method to a hash River stage one • 1 direct dependent • 3 total dependents

Subroutines don't have interpreted into strings. The module ties a subroutine to a hash. The subroutine is executed at fetch hash. At long last this is the same, only the notation is shorter. Alternative to " ... ${\ subroutine('abc') } ... " # or " ...

STEFFENW/Tie-Sub-1.001 - 20 Aug 2012 05:37:26 UTC

Tie::Dir - class definition for reading directories via a tied hash River stage zero No dependents

This module provides a method of reading directories using a hash. The keys of the hash are the directory entries and the values are a reference to an array which holds the result of "stat" being called on the entry. The access and modification times...

GBARR/Tie-Dir-1.02 - 26 Apr 1996 13:24:56 UTC

Tie::RefHash - Use references as hash keys River stage three • 16 direct dependents • 937 total dependents

This module provides the ability to use references as hash keys if you first "tie" the hash variable to this module. Normally, only the keys of the tied hash itself are preserved as references; to use references as keys in hashes-of-hashes, use Tie::...

ETHER/Tie-RefHash-1.40 - 10 Oct 2020 20:40:27 UTC

Tie::CPHash - Case preserving but case insensitive hash table River stage one • 2 direct dependents • 2 total dependents

The Tie::CPHash module provides a hash table that is case preserving but case insensitive. This means that $cphash{KEY} $cphash{key} $cphash{Key} $cphash{keY} all refer to the same entry. Also, the hash remembers which form of the key was last used t...

CJM/Tie-CPHash-2.000 - 17 Jan 2015 16:57:21 UTC

Tie::Ispell - Ties an hash with an ispell dictionary River stage zero No dependents

AMBS/Tie-Ispell-0.08 - 23 Nov 2011 22:28:26 UTC

SPOPS::Tie - Simple class implementing tied hash with some goodies River stage one • 2 direct dependents • 2 total dependents

Stores data for a SPOPS object, and also some accompanying materials such as whether the object has been changed and any temporary variables. Checking Changed State You can check whether the data have changed since the last fetch by either calling th...

CWINTERS/SPOPS-0.87 - 02 Jun 2004 01:03:25 UTC

Tie::Filter - Tie a facade around a scalar, array, or hash River stage zero No dependents

This module ties a facade around a scalar, array, or hash. The facade then filters data as it is being fetched from or stored to the internal object. For scalars, it provides an API for filtering values stored to and fetched from an internal scalar. ...

HANENKAMP/Tie-Filter-1.02 - 19 Dec 2003 05:02:01 UTC

Tie::Moose - tie a hash to a Moose object (yeah, like Tie::MooseObject) River stage zero No dependents

This module is much like Tie::MooseObject. It ties a hash to an instance of a Moose-based class, allowing you to access attributes as hash keys. It uses the accessors provided by Moose, and thus honours read-only attributes, type constraints and coer...

TOBYINK/Tie-Moose-0.003 - 02 Oct 2014 22:23:35 UTC

Tie::DictFile - tie a hash to local dictionary file River stage zero No dependents

Ties a hash to a local dictionary file (typically "/usr/dict/words" or "/usr/share/dict/words") to allow easy dictionary lookup, insertion and deletion. Lookup operations are cached for performance, and any insertions/deletions are only written to th...

ANUNES/Tie-DictFile-0.03 - 27 Jun 2003 17:40:04 UTC

Tie::Judy - Perl extension for using a Judy array instead of a hash. River stage zero No dependents

EXPORT No exports....

BHOLZMAN/Tie-Judy-0.05 - 06 Mar 2009 21:09:32 UTC

Tie::REHash - the tie()d implementation of hash that allows using regular expression "keys" along with plain keys (plus some more). River stage zero No dependents

Tie::REHash is a tie()d implementation of hash that allows using regexp "keys" along with plain keys. Storing (assigning value to, deleting) regexp key in a hash tie()d to Tie::REHash is almost equivalent to storing (assigning value to, deleting) set...

METADOO/Tie-REHash-1.08 - 16 Aug 2017 10:18:48 UTC

Tie::TimeSeries - Convenient hash tyng for time series data. River stage zero No dependents

When using time series data like throughput, statistics or so, this module is convenient that key will be sorted automatically. And this also is able to provide instance for OO using....

TONODERA/Tie-TimeSeries-0.01 - 19 Mar 2013 04:42:11 UTC

Pad::Tie - tie an object to lexical contexts River stage zero No dependents

Pad::Tie lets you use your objects' methods as though they were lexical variables. Alternately, it lets you use lexical variables to refer to your bound object methods. It's all a matter of perspective. Creating a Pad::Tie object requires an object (...

HDP/Pad-Tie-0.006 - 26 Apr 2007 17:52:28 UTC

Tie::DBI - Tie hashes to DBI relational databases River stage one • 1 direct dependent • 2 total dependents

This module allows you to tie Perl associative arrays (hashes) to SQL databases using the DBI interface. The tied hash is associated with a table in a local or networked database. One column becomes the hash key. Each row of the table becomes an asso...

TODDR/Tie-DBI-1.08 - 19 Jan 2020 03:37:25 UTC

Tie::StrictHash - A hash with 'strict'-like semantics River stage zero No dependents

"Tie::StrictHash" is a module for implementing some of the same semantics for hash members that 'use strict' gives to variables. The following constraints are applied to a strict hash: o No new keys may be added to the hash except through the add met...

KVAIL/Tie-StrictHash-1.0 - 17 Mar 2001 18:54:58 UTC

Tie::ShadowHash - Merge multiple data sources into a hash River stage zero No dependents

This module merges together multiple sets of data in the form of hashes into a data structure that looks to Perl like a single simple hash. When that hash is accessed, the data structures managed by that shadow hash are searched in order they were ad...

RRA/Tie-ShadowHash-2.01 - 08 Oct 2022 16:08:50 UTC

Tie::AliasHash - Hash with aliases key (multiple keys, one value) River stage zero No dependents

Tie::AliasHash creates hashes that can have multiple keys for a single value. This means that some keys are just 'aliases' for other keys. The example shown in the synopsys above creates a key 'foo' and an alias key 'bar'. The two keys share the same...

ACALPINI/Tie-AliasHash-1.02 - 11 Mar 2016 18:17:22 UTC

Tie::Trace - easy print debugging with tie, for watching variable River stage one • 1 direct dependent • 1 total dependent

This is useful for print debugging. Using tie mechanism, you can see stored/deleted value for the specified variable. If the stored value is scalar/array/hash ref, this can check recursively. for example; watch %hash; $hash{foo} = {a => 1, b => 2}; #...

KTAT/Tie-Trace-0.17 - 27 Jan 2017 22:51:13 UTC

Tie::RDBM - Tie hashes to relational databases River stage one • 1 direct dependent • 2 total dependents

This module allows you to tie Perl associative arrays (hashes) to SQL databases using the DBI interface. The tied hash is associated with a table in a local or networked database. One field of the table becomes the hash key, and another becomes the v...

TODDR/Tie-DBI-1.08 - 19 Jan 2020 03:37:25 UTC
103 results (0.1 seconds)