in skiko/src/nativeMain/kotlin/org/jetbrains/skia/impl/Native.native.kt [10:15]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (null == other) return false
if (other !is Native) return false
return if (_ptr == other._ptr) true else nativeEquals(other)
}