next()
Returns a value from a uniform, independent distribution of binary data.
Declaration
mutating func next() -> UInt64Return Value
An unsigned 64-bit random value.
Discussion
Use this method when you need random binary data to generate another value. If you need an integer value within a specific range, use the static random(in:using:) method on that integer type instead of this method.