nextUBytes
Fills the specified unsigned byte array with random bytes and returns it.
Since Kotlin
1.3Return
array filled with random bytes.
Creates an unsigned byte array of the specified size, filled with random bytes.
Since Kotlin
1.3fun Random.nextUBytes(array: UByteArray, fromIndex: Int = 0, toIndex: Int = array.size): UByteArray(source)
Fills a subrange of the specified UByte
array starting from fromIndex inclusive and ending toIndex exclusive with random UBytes.
Since Kotlin
1.3Return
array with the subrange filled with random bytes.