random

Functions for generating random numbers.

Summary
randomFunctions for generating random numbers.
Exceptions
RandomExceptionException raised when a random source fails or is unavailable.
Functions
bytesReturn a requested number of random bytes.
uint32Return a random 32-bit unsigned integer with a uniform distribution.

Exceptions

RandomException

Exception raised when a random source fails or is unavailable.

Functions

bytes

DECLARE NATIVE FUNCTION bytes(count: Number): Bytes

Return a requested number of random bytes.

uint32

DECLARE NATIVE FUNCTION uint32(): Number

Return a random 32-bit unsigned integer with a uniform distribution.

DECLARE NATIVE FUNCTION bytes(count: Number): Bytes
Return a requested number of random bytes.
DECLARE NATIVE FUNCTION uint32(): Number
Return a random 32-bit unsigned integer with a uniform distribution.
Close