Created by kiran on 19/3/17.
| 18 | * Created by kiran on 19/3/17. |
| 19 | */ |
| 20 | public interface Function<T, R> { |
| 21 | |
| 22 | /** |
| 23 | * |
| 24 | * @param t - some parameter |
| 25 | * @return R - result |
| 26 | */ |
| 27 | R apply(T t); |
| 28 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…