show/hide this revision's text 3 add parentheses

The ternary operator is generally to be avoided, but this form can be quite readable:

  result = (foo == bar)  ? result1 :
           (foo == baz)  ? result2 :
           (foo == qux)  ? result3 :
           (foo == quux) ? result4 : 
                           fail_result;

This way, the condition and the result are kept together on the same line, and it's fairly easy to skim down and understand what's going on.

show/hide this revision's text 2 added 14 characters in body

The ternary operator is generally to be avoided, but this form can be quite readable:

  result = foo == bar  ? result1 :
           foo == baz  ? result2 :
           foo == qux  ? result3 :
           foo == quux ? result4 : 
                         fail_result;

This way, the condition and the result are kept together on the same line, and it's fairly easy to skim down and understand what's going on.

show/hide this revision's text 1

The ternary operator is generally to be avoided, but this form can be quite readable:

  result = foo == bar  ? result1 :
           foo == baz  ? result2 :
           foo == qux  ? result3 :
           foo == quux ? result4 : 
           fail_result;

This way, the condition and the result are kept together on the same line, and it's fairly easy to skim down and understand what's going on.