Skip to content

Instantly share code, notes, and snippets.

@julianfalcionelli
Created May 15, 2017 14:42
Show Gist options
  • Save julianfalcionelli/769e3eb10a5f71576be6ac14c4dba7d5 to your computer and use it in GitHub Desktop.
Save julianfalcionelli/769e3eb10a5f71576be6ac14c4dba7d5 to your computer and use it in GitHub Desktop.
Without Lambda
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