ULong
The ULong
provider generates a random ULong value between two unsigned longs.
Default Behavior
Between 0
and 18,446,744,073,709,551,615 (264 - 1)
Extending the Provider
If you need a specific range you can pass custom min
and max
values to the provider:
val uLong = ULongProvider(min = 1u, max = 15u).get()