Hi, I plan to remove the visitor pattern of filter in TsFile. It will make the code more clear and reduce the call stack.
Then we can use filter like:
Filter<Integer> filter = new Eq<>(10);
boolean result = filter.satisfy(10);
Jialin Qiao
