I have a class ExtA which contains a filter function to filter an ArrayList:
public ExtA filt(...) { //code }
when I compile i
You have to put the parameter on the method:
public ExtA filt(Func a) { // method code }