static S ai_renderList(L l) { ret ai_renderList(l, "-"); } static S ai_renderList(L l, S defaultValue) { if (empty(l)) ret defaultValue; ret joinWithComma(allToString(l)); }