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

commonMain.kotlinx.io.core.Use.kt Maven / Gradle / Ivy

There is a newer version: 0.1.16
Show newest version
package kotlinx.io.core

inline fun  I.use(block: (I) -> R): R {
    return try {
        block(this)
    } finally {
        close()
    }
}

inline fun  O.use(block: (O) -> R): R {
    return try {
        block(this)
    } finally {
        close()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy