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

jvmMain.com.bkahlert.kommons.debug.plain.kt Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
package com.bkahlert.kommons.debug

internal actual val Collection<*>.isPlain: Boolean
    get() = isNative

internal actual val Map<*, *>.isPlain: Boolean
    get() = isNative

private val Any.isNative: Boolean
    get() = javaClass.`package`.name.let {
        it.startsWith("java.") || it.startsWith("kotlin.")
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy