Skip to content

Instantly share code, notes, and snippets.

@HennIdan
Last active April 4, 2017 16:29
Show Gist options
  • Save HennIdan/bf45316646e2fb34335ab4a8db75e872 to your computer and use it in GitHub Desktop.
Save HennIdan/bf45316646e2fb34335ab4a8db75e872 to your computer and use it in GitHub Desktop.
public int streamMaxInteger() {
Optional max = integers.stream().reduce(Integer::max);
return max.get();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment