What is the >? operator called in the following code:

Code:
int a = 3, b=4, c=5;    
int r = c <? b <? a;
I can figure that it finds the minimum, but what is that operator called? It's different from the ternary operator, which I've seen before ( for ex. a>b?1:0 ).