All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonTest.maryk.rocksdb.util.dummyString.kt Maven / Gradle / Ivy

package maryk.rocksdb.util

import kotlin.random.Random

/**
 * Generate a random string of bytes.
 * @param len the length of the string to generate.
 * @return the random string of bytes
 */
fun dummyString(len: Int) =
    ByteArray(len).apply {
        Random.nextBytes(this)
    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy