jsMain.org.brightify.hyperdrive.utils.WeakReference.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-utils-js Show documentation
Show all versions of kotlin-utils-js Show documentation
Module containing various utils used throughout Hyperdrive.
package org.brightify.hyperdrive.utils
public actual class WeakReference actual constructor(referred: T) {
private var value: T? = referred
public actual fun get(): T? = value
public actual fun clear() {
value = null
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy