Back to Intellij Community

Description

plugins/kotlin/code-insight/descriptions/resources-en/intentionDescriptions/ConvertBinaryExpressionWithDemorgansLawIntention/description.html

2025.3-rc-2158 B
Original Source

Converts a boolean expression to an equivalent expression using De Morgan's laws: replaces either !a || !b with !(a && b) or !a && !b with !(a || b)