Skip to content

Instantly share code, notes, and snippets.

@justinmusgrove
Created March 20, 2014 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinmusgrove/9655266 to your computer and use it in GitHub Desktop.
Save justinmusgrove/9655266 to your computer and use it in GitHub Desktop.
Concat two streams, distinct, sum
IntStream stream1 = IntStream.of(1, 2, 3);
IntStream stream2 = IntStream.of(1, 2, 3);
int val = IntStream.concat(stream1, stream2).distinct().sum();
System.out.println(val);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment