override fun equals()

in skiko/src/commonMain/kotlin/org/jetbrains/skia/FontVariationAxis.kt [30:38]


    override fun equals(other: Any?): Boolean {
        if (other === this) return true
        if (other !is FontVariationAxis) return false
        if (this._tag != other._tag) return false
        if (minValue.compareTo(other.minValue) != 0) return false
        if (defaultValue.compareTo(other.defaultValue) != 0) return false
        if (maxValue.compareTo(other.maxValue) != 0) return false
        return isHidden == other.isHidden
    }