jsAndWasmSharedMain.internal.ThreadLocal.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core
Show all versions of kotlinx-coroutines-core
Coroutines support libraries for Kotlin
package kotlinx.coroutines.internal
internal actual class CommonThreadLocal {
private var value: T? = null
@Suppress("UNCHECKED_CAST")
actual fun get(): T = value as T
actual fun set(value: T) { this.value = value }
}
internal actual fun commonThreadLocal(name: Symbol): CommonThreadLocal = CommonThreadLocal()