RandomDotOrg-0.1: Interface to random numbers on random.orgSource codeContentsIndex
RandomDotOrg
Synopsis
getRandomNumbers :: Int -> Int -> Int -> IO (Either String [Int])
Documentation
getRandomNumbersSource
:: IntNumber of integers to get
-> IntMinimum number
-> IntMaximum number
-> IO (Either String [Int])Returns either an error string or the list of integers
Used to get a list of random numbers from http:random.org. Note: the minimum must be greater than the maximum. The maximum amount of numbers you can retrieve is 10,000, and the numbers themselves are limited to a range of +/- 1,000,000,000 (inclusive)
Produced by Haddock version 2.4.1