Created
October 11, 2017 07:59
-
-
Save brianyu0717/2cb6f5274625b592f666777c1dbe50d3 to your computer and use it in GitHub Desktop.
Simple FunctionalInterface example for Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @FunctionalInterface | |
| public interface ThreeFunction<A, B , C, R> { | |
| R apply(A a, B b, C c); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment