// use auto-operator static L ai_operands(S s) { ret ai_operands(ai_getOperator(s), s); } static L ai_operands(L operator, S s) { L tok = javaTokPlusBracketsC_unquote(s); assertSameLength(operator, tok); new L operands; for i over operator: if (isStar(operator.get(i))) operands.add(tok.get(i)); ret operands; }