static LS ai_addDollarSignToCertainTokens(LS tok, final Set set) { ret map(tok, func(S t) -> S { contains(set, t) ? "$" + t : t }); }