Code Inspection: Simplify conditional ternary expression
Last modified: 08 March 2021 tip
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: