My intention is to use filter method in an expression within the for loop. Now, the code looks like this:
«FOR interf : delegates.getInterf(delegate)»
«IF !bridgeInterfaces.contains(interf)»
...
«ENDIF»
«ENDFOR»
So, the aim is to have something as:
«FOR interf : delegates.getInterf(delegate).filter[!bridgeInterfaces.contains]»
The above, however, is incorrect. How could I achieve what I want?