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