override fun equals()

in skiko/src/commonMain/kotlin/org/jetbrains/skia/FontFeature.kt [45:52]


    override fun equals(other: Any?): Boolean {
        if (other === this) return true
        if (other !is FontFeature) return false
        if (this.tag != other.tag) return false
        if (value != other.value) return false
        if (start != other.start) return false
        return end == other.end
    }