in components/resources/library/src/commonMain/kotlin/org/jetbrains/compose/resources/plural/PluralRule.kt [160:168]
override fun equivalentForInteger(other: Condition): Boolean {
if (this === other) return true
if (other !is Relation) return false
if ((operand == Operand.N || operand == Operand.I) != (other.operand == Operand.N || other.operand == Operand.I)) return false
if (operandDivisor != other.operandDivisor) return false
if (comparisonIsNegated != other.comparisonIsNegated) return false
if (!ranges.contentEquals(other.ranges)) return false
return true
}