Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
contains
Method · 0.65
concat
Method · 0.45
filter
Method · 0.45
Tested by
no test coverage detected