MCPcopy
hub / github.com/google/guava / stream

Method stream

guava/src/com/google/common/collect/Sets.java:873–876  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

871 }
872
873 @Override
874 public Stream<E> stream() {
875 return Stream.concat(set1.stream(), set2.stream().filter((E e) -> !set1.contains(e)));
876 }
877
878 @Override
879 public Stream<E> parallelStream() {

Callers

nothing calls this directly

Calls 3

containsMethod · 0.65
concatMethod · 0.45
filterMethod · 0.45

Tested by

no test coverage detected