Any recommendations on (white-space formatting of) the following?
let val = if some_long_and_complex_condition() {
val_a
} else {
val_b
};
verse something more condensed like:
// ugly, but at least not overly long:
let val = if some_long_and_complex_condition() {
val_a } else { val_b };