random_randomFloat()
Returns a random floating-point value within the specified range.
fn random_randomFloat (min := 0.0, max := 1.0) float
min - Minimum possible random value.
max - Maximum possible random value.
random_randomInt()
Returns a random value within the specified range.
fn random_randomInt (min := math_MinInt, max := math_MaxInt) int
min - Minimum possible random value.
max - Maximum possible random value.
random_randomStr()
Returns a random string constructed with specified characters set.
fn random_randomStr (
characters := "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
len := 32
) str
characters - Characters to use when constructing value.
len - Resulting value length.