override fun equals()

in kotlin-css/src/commonMain/kotlin/kotlinx/css/StyleDimensions.kt [38:45]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other == null || this::class != other::class) return false

        other as LinearDimension

        return value == other.value
    }