
Math::Random::ISAAC::PP - Pure Perl port of the ISAAC PRNG Algorithm

Version 1.0.4 ($Id: PP.pm 6696 2009-04-26 23:27:08Z FREQUENCY@cpan.org $)

This module implements the same interface as Math::Random::ISAAC and can be used as a drop-in replacement.
However,
it is recommended that you let the Math::Random::ISAAC module decide whether to use the PurePerl or XS version of this module,
instead of choosing manually.
Selecting the backend to use manually really only has two uses:
Example code:
# With Math::Random::ISAAC my $rng = Math::Random::ISAAC->new(time); my $rand = $rng->rand(); # With Math::Random::ISAAC::PP my $rng = Math::Random::ISAAC::PP->new(time); my $rand = $rng->rand();

See Math::Random::ISAAC for the full description.

Implements the interface as specified in Math::Random::ISAAC
Implements the interface as specified in Math::Random::ISAAC
Implements the interface as specified in Math::Random::ISAAC

Jonathan Yu <frequency@cpan.org>


Please file bugs for this module under the Math::Random::ISAAC distribution. For more information, see Math::Random::ISAAC's perldoc.

Copyleft 2009 by Jonathan Yu <frequency@cpan.org>. All rights reversed.
I, the copyright holder of this package, hereby release the entire contents therein into the public domain. This applies worldwide, to the extent that it is permissible by law.
In case this is not legally possible, I grant any entity the right to use this work for any purpose, without any conditions, unless such conditions are required by law.
The full details of this can be found in the LICENSE file included in this package.

The software is provided "AS IS", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.