Blame view
src/Filter.java
64 Bytes
1b1e928cc initial import of... |
1 2 3 4 5 6 |
public interface Filter<T, U> { public U apply(T elem); } |
1b1e928cc initial import of... |
1 2 3 4 5 6 |
public interface Filter<T, U> { public U apply(T elem); } |