random::integer_using
Generates a pseudo-random 32-bit unsigned integer using a specific seed.
Declaration
uint random::integer_using(uint seed)Parameters
- seed:
The seed value to use for random number generation.
Return Value
A pseudo-random 32-bit unsigned integer.
Discussion
This function generates a random integer covering the full range of 32-bit unsigned values using the provided seed. The seed is not modified, allowing for reproducible random number generation. Use this when you need deterministic randomness or want to control the random sequence independently.