Blame view

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