static S appendBracketed(S b) { ret empty(b) ? "" : "" + " (" + b + ")"; } static S appendBracketed(S a, S b) { ret a + appendBracketed(b); }