Created
May 15, 2017 14:42
-
-
Save julianfalcionelli/769e3eb10a5f71576be6ac14c4dba7d5 to your computer and use it in GitHub Desktop.
Without Lambda
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
reduce(new IntBinaryOperator() { | |
int applyAsInt(int left, int right) { | |
return Math.max(left, right); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment