This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
README
NAME
Tie::Hash::Random - Generates random different numbers for different fetched keys
SYNOPSIS
use Tie::Hash::Random;
my %hash;
tie %hash, 'Tie::Hash::Random';
my $a_random_number = $hash{foo};
my $an_other_random_number = $hash{bar};
$a_random_number == $hash{foo}; ## True
DESCRIPTION
Tie::Hash::Random generates a random number each time a different key is fetched.
STORE
Stores data
FETCH
Fetchs
AUTHOR
Matias Alejo Garcia <matiu@cpan.org>
UPDATES
The latest version of this module will always be available from from CPAN at
<http://search.cpan.org/~ematiu>.
COPYRIGHT
Copyright (C) 2009, Matias Alejo Garcia
LICENSE
This script is free software; you can redistribute it and/or modify it under the same terms as
Perl itself.
SEE ALSO
perl(1), perltie(1), Tie::StdHash(1), Tie::Hash::Cannabinol








