pub fn select_unpredictable(condition: bool, true_val: T, false_val: T) -> T { if condition { true_val } else { false_val } }