
Math::Random::ISAAC::XS - C implementation of the ISAAC PRNG Algorithm

Version 1.0.5 ($Id: XS.pm 7045 2009-05-12 13:25:56Z FREQUENCY@cpan.org $)

This module implements the same interface as Math::Random::ISAAC and can be used as a drop-in replacement.
This is the recommended implementation of the module,
based on Bob Jenkins' reference implementation in C.
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::XS my $rng = Math::Random::ISAAC::XS->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>

You can find documentation for this module with the perldoc command.
perldoc Math::Random::ISAAC::XS
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Random-ISAAC-XS

You can access the most recent development version of this module at:
http://svn.ali.as/cpan/trunk/Math-Random-ISAAC-XS
If you are a CPAN developer and would like to make modifications to the code base, please contact Adam Kennedy <adamk@cpan.org>, the repository administrator. I only ask that you contact me first to discuss the changes you wish to make to the distribution.

Please send relevant comments, rotten tomatoes and suggestions directly to the maintainer noted above.
If you have a bug report or feature request, please file them on the CPAN Request Tracker at http://rt.cpan.org. If you are able to submit your bug report in the form of failing unit tests, you are strongly encouraged to do so.


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.