Nah. You just have to wonder about some programmers when they do things like this:

(xyz ? func_1 : func_2)(arg1, xyz ? arg2 : arg3);

I've got a library for a expansion board that is full of things like that for some reason. They're actually a little more complicated but you get the general idea. Must have had an aversion to using if/else

- Trevor