Search results for "module:Tie::Array"
Tie::Array - base class for tied arrays
This module provides methods for array-tying classes. See perltie for a list of the functions required in order to tie an array to a package. The basic Tie::Array package provides stub "DESTROY", and "EXTEND" methods that do nothing, stub "DELETE" an...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
Tie::Array - base class for tied arrays
This module provides methods for array-tying classes. See perltie for a list of the functions required in order to tie an array to a package. The basic Tie::Array package provides stub "DESTROY", and "EXTEND" methods that do nothing, stub "DELETE" an...
PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC
Prima::Tie::Array - tie widget properties to scalars and arrays
Prima::Tie contains two abstract classes "Prima::Tie::Array" and "Prima::Tie::Scalar" which tie an array or a scalar to a widget's arbitrary array or scalar property. Also, it contains classes "Prima::Tie::items", "Prima::Tie::text", and "Prima::Tie:...
KARASIK/Prima-1.71 - 29 Oct 2023 11:04:47 UTC
Tie::Array::CSV - A tied array which combines the power of Tie::File and Text::CSV
This module allows an array to be tied to a CSV file for reading and writing. The array is a standard Perl 2D array (i.e. an array of array references) which gives access to the row and column of the user's choosing. This is done using the well estab...
JBERGER/Tie-Array-CSV-0.08 - 07 Oct 2019 15:44:29 UTC
Tie::Array::DBD - tie a plain array to a database table
This module ties an array to a database table using only an "index" and a "value" field. If no tables specification is passed, this will create a temporary table with "h_key" for the key field and a "h_value" for the value field. I think it would mak...
HMBRAND/Tie-Hash-DBD-0.24 - 06 Jan 2023 14:38:35 UTC
Tie::Array::Log - Tied array that behaves like a regular array, but logs operations
This class implements tie interface for array but performs regular array operations, except logging the operation with Log::ger. It's basically used for testing, benchmarking, and documentation only....
PERLANCAR/Tie-Array-Log-0.003 - 15 Dec 2021 00:05:59 UTC
Tie::Array::Unique - Keep array's contents unique
This is a very simple module. Use it as shown above, and your array will never have a duplicate element in it. The earliest (i.e. lowest-indexed) element has precedence, as shown in this code sample: tie my(@x), 'Tie::Array::Unique'; @x = (1, 2, 3, 4...
PINYAN/Tie-Array-Unique-0.01 - 12 Apr 2004 19:37:47 UTC
Tie::Array::Lazy - Lazy -- but mutable -- arrays.
Tie::Array::Lazy implements a *lazy array*, an array that generates the element on demand. It is a lot like a *lazy list* but unlike lazy lists seen in many functional languages like Haskell, lazy arrays are mutable so you can assign values to their ...
DANKOGAI/Tie-Array-Lazy-0.02 - 09 Aug 2012 19:15:35 UTC
Tie::Hash::Array - a hash which is internally implemented as a sorted array
Hashes tied to this class will interally be stored as an array alternately containing keys and values, with its keys sorted in standard string comparison order, that is, as "cmp" does. While the main purpose of this module is serving as a base class ...
FANY/Tie-Hash-Array-0.1 - 01 Jan 2008 15:28:34 UTC
Tie::Array::Pack - An array implemented as a packed string
One of the drawbacks for using Perl's native array is that it is a memory-hog. Normally it takes 20 bytes a scalar (16 bytes for scalar + overhead). This can be a problem when you need to handle millions of numbers in-memory. This module saves memory...
DANKOGAI/Tie-Array-Pack-0.02 - 22 Dec 2006 03:22:35 UTC
Tie::Alias::Array - required by Tie::Alias::TIEARRAY
DAVIDNICO/Tie-Alias-Array-0.01
-
26 Nov 2002 03:23:39 UTC
Tie::Array::Queue - force an array to act like a queue
See Attribute::QueueStack for my interpretation of how queues act....
TOBYINK/Attribute-QueueStack-0.003 - 19 Sep 2014 07:00:24 UTC
Tie::Array::Stack - force an array to act like a stack
See Attribute::QueueStack for my interpretation of how stacks act....
TOBYINK/Attribute-QueueStack-0.003 - 19 Sep 2014 07:00:24 UTC
Tie::Array::Packed - store arrays in memory efficiently as packed strings
This module provides an implementation for tied arrays that uses as storage a Perl scalar where all the values are packed as if the "pack" builtin had been used. All the values on a Tie::Array::Packed array are of the same value (integers, shorts, do...
SALVA/Tie-Array-Packed-0.13 - 10 Dec 2013 13:29:24 UTC
Tie::Array::Sorted - An array which is kept sorted
This presents an ordinary array, but is kept sorted. All pushes and unshifts cause the elements in question to be inserted in the appropriate location to maintain order. Direct stores ("$a[10] = "wibble"") effectively splice out the original value an...
TMTM/Tie-Array-Sorted-1.41 - 07 Aug 2006 14:56:53 UTC
Tie::Array::AsHash - tie arrays as hashes by splitting lines on separator
"Tie::Array::AsHash" uses some practical extracting code so arrays can be tied to hashes. The module was initially written by Chris Angell <chris@chrisangell.com> for managing htpasswd-format password files....
REHSACK/Tie-Array-AsHash-0.200 - 08 Nov 2013 18:37:34 UTC
Tie::Array::Lazier - Lazier than Tie::Array::Lazy
Tie::Array::Lazier is a child class of Tie::Array::Lazy that behaves a lot like its parent except for one thing; It is even lazier. Instead of filling elements up to $index, Tie::Array::Lazier It calls "$self->maker" when "$self->array->[$index]" is ...
DANKOGAI/Tie-Array-Lazy-0.02 - 09 Aug 2012 19:15:35 UTC
Tie::Array::Atomic - ties a Perl array to a static atomic lock-free C-array
Tie::Array::Atomic ties a Perl array to static-sized C-array. Array stored in virtual memory and can be shared between threads. All operations for array elements are atomic, so no mutexes needed for array synchronization. Options length (required) ::...
YURY/Tie-Array-Atomic-0.01 - 18 Jun 2012 11:00:19 UTC
Tie::Array::Expire - Array with expiring elements
This module allows you to create an array with the elements autodisappearing after a specified expiry time. This array can be used in, e.g.: rate control checking ("maximum sending 20 emails in 4 hours")....
PERLANCAR/Tie-Array-Expire-0.001 - 07 Jun 2017 10:55:41 UTC