Skip to content

Instantly share code, notes, and snippets.

@brianyu0717
Created October 11, 2017 07:59
Show Gist options
  • Select an option

  • Save brianyu0717/2cb6f5274625b592f666777c1dbe50d3 to your computer and use it in GitHub Desktop.

Select an option

Save brianyu0717/2cb6f5274625b592f666777c1dbe50d3 to your computer and use it in GitHub Desktop.
Simple FunctionalInterface example for Java
@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