mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 12:26:27 -04:00
search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl
18 lines
406 B
Text
18 lines
406 B
Text
The author got really tired of statements that looked like:
|
|
|
|
$heap->{job}{$job} = {
|
|
source => $source,
|
|
dest => $destination,
|
|
options => $options,
|
|
};
|
|
|
|
and later:
|
|
|
|
if ($heap->{job}{$job}{options}{wibble} eq $something_else) {
|
|
# do something...
|
|
}
|
|
|
|
This module is meant to simplify this sort of things, with
|
|
optional persistence as a bonus.
|
|
|
|
WWW: https://metacpan.org/release/Data-Remember
|