Package net.dermetfan.utils
Interface BiFunction<A1,A2,R>
- Type Parameters:
R
- the return typeA1
- the first argument typeA2
- the second argument type
public interface BiFunction<A1,A2,R>
A basic rip-off of
BiFunction
from Java 8.-
Method Summary
-
Method Details
-
apply
- Parameters:
arg1
- the first argumentarg2
- the second argument- Returns:
- the return value
-