override fun equals()

in skiko/src/commonMain/kotlin/org/jetbrains/skia/IRect.kt [37:44]


    override fun equals(other: Any?): Boolean {
        if (other === this) return true
        if (other !is IRect) return false
        if (left != other.left) return false
        if (top != other.top) return false
        if (right != other.right) return false
        return bottom == other.bottom
    }