Created
July 14, 2019 09:57
-
-
Save deepakmehra10/07dc5aae92a0894d4ac883568d2823b8 to your computer and use it in GitHub Desktop.
This file contains 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
//currying | |
Function1<Integer, Function1<Integer, Function1<Integer, Integer>>> curried = fourArgFunction.curried().apply(2); | |
System.out.println(curried.apply(2).apply(1).apply(1)); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment