Help language development. Donate to The Perl Foundation
Array::Sparse - role for sparsely populated Arrays
use Array::Sparse;
my @a is Array::Sparse;
Exports an Array::Sparse
role that can be used to indicate the implementation of an array (aka Positional) that will not allocate anything for indexes that are not used. It also allows indexes to be used that exceed the native integer size.
Unless memory is of the most importance, if you populate more than 5% of the indexes, you will be better of just using a normal array.
Since Array::Sparse
is a role, you can also use it as a base for creating your own custom implementations of arrays.
Methods that iterate over the sparse array, will only report elements that actually exist. This affects methods such as .keys
, .values
, .pairs
, .kv
, .iterator
, .head
, .tail
, etc.
Elizabeth Mattijsen [email protected]
Source can be located at: https://github.com/lizmat/Array-Sparse . Comments and Pull Requests are welcome.
Copyright 2018, 2020, 2021 Elizabeth Mattijsen
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.