NAME Random::Set - Class for random set generation. SYNOPSIS use Random::Set; my $obj = Random::Set->new(%params); my $random = $obj->get; METHODS "new" my $obj = Random::Set->new(%params); Constructor. Returns instance of object. * "precision" Precision. Default value is 100. * "set" Set definition. Set is array of arrays with pairs of probability and value. Default value is []. It is required. Sumary of probabilities must be 1. "get" my $random = $obj->get; Get random value from set. Returns value from set. ERRORS new(): Bad set sum. Must be 1. From Class::Utils::set_params(): Unknown parameter '%s'. EXAMPLE use strict; use warnings; use Random::Set; # Object. my $obj = Random::Set->new( 'set' => [ [0.5, 'foo'], [0.5, 'bar'], ], ); # Get random data. my $random = $obj->get; # Print out. print $random."\n"; # Output like: # foo|bar DEPENDENCIES Class::Utils, Error::Pure. SEE ALSO Random::Day Class for random day generation. REPOSITORY AUTHOR Michal Josef Špaček LICENSE AND COPYRIGHT © Michal Josef Špaček 2013-2021 BSD 2-Clause License VERSION 0.07