random - have rand() return integers or fixed values


random documentation  | view source Contained in the random distribution.

Index


NAME

Top

random - have rand() return integers or fixed values

VERSION

Top

Version 0.01

SYNOPSIS

Top

    use random;

    my $dice = 1 + rand 6; # one of 1 .. 6

    # or
    use random qw(integer);

    my $dice = 1 + rand 6; # one of 1 .. 6

    use random qw(fixed 6); # cheat on dice

    my $six = rand; # 6




EXPORT

Top

Nothing.

FUNCTIONS

Top

import

unimport

rand

when random (integer) is in effect it returns int(rand)

when random (fixed) is in effect it returns the fixed value

otherwise CORE::rand

AUTHOR

Top

Joerg Meltzer, <joerg {at} joergmeltzer.de>

BUGS

Top

Please report any bugs or feature requests to bug-random at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=random. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

The fixed value -123456789 doesn't work. The value is reserved to make the integer option work.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc random




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=random

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/random

* CPAN Ratings

http://cpanratings.perl.org/d/random

* Search CPAN

http://search.cpan.org/dist/random/

ACKNOWLEDGEMENTS

Top

Thanx goes to Abeltje (http://yapc.tv/2008/ye/lt/lt2-02-abeltje-fixedtime). I learned about pragmas watching your show.

COPYRIGHT & LICENSE

Top


random documentation  | view source Contained in the random distribution.