String BinCond(boolean_expression1, mapping_string1, ..., boolean_expressionN, mapping_stringN, other_string)
.if (boolean_expression1) return mapping_string1;
......
else if (boolean_expressionN) return mapping_stringN;
else return other_string;
|
|