I'm using Xtend template to generate list and I would like to pop-off the last comma from the generated sequence:
«FOR link : links»
«link.simpleName»,
«ENDFOR»
Can I manipulate the StringConcatenation behind "on-the-fly"?
«ENDFOR _builder.deleteCharAt(result.size - 1)»
The sample above is not possible, StringConcatenation does not have such a method.