commonMain.kotlinx.io.core.Use.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-io-jvm Show documentation
Show all versions of kotlinx-io-jvm Show documentation
IO support libraries for Kotlin
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