Code inspection: Simplify conditional ternary expression
Last modified: 11 February 2024tip
If your ternary expression (an expression of the form a ? b : c
) contains a boolean constant as either b
or c
, it can be converted to a much simpler expression. For example, this
can be simplified to this: