in reply to Trinary or If'n'Else?

To make your code faster, closely examine your algorithm and logic. Profile where your code is spending its time.

Improvements here can are thousand-fold more important than the minor speed issues of ? vs. if-then-else.

My two cents.

nop