5 lines
82 B
Kotlin
Vendored
5 lines
82 B
Kotlin
Vendored
package foo
|
|
|
|
inline fun <reified T> isInstance(x: Any?): Boolean =
|
|
x is T
|