commonMain.arrow.optics.predef.kt Maven / Gradle / Ivy
package arrow.optics
@Suppress("ClassName")
internal object EMPTY_VALUE {
@Suppress("UNCHECKED_CAST", "NOTHING_TO_INLINE")
inline fun unbox(value: Any?): T =
if (value === this) null as T else value as T
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy