MCPcopy Create free account
hub / github.com/antlr/codebuff / contains

Method contains

output/java_guava/1.4.17/Sets.java:1403–1410  ·  view source on GitHub ↗
(@Nullable Object obj)

Source from the content-addressed store, hash-verified

1401 }
1402
1403 @Override
1404 public boolean contains(@Nullable Object obj) {
1405 if (obj instanceof Set) {
1406 Set<?> set = (Set<?>) obj;
1407 return inputSet.keySet().containsAll(set);
1408 }
1409 return false;
1410 }
1411
1412 @Override
1413 public boolean equals(@Nullable Object obj) {

Callers

nothing calls this directly

Calls 2

containsAllMethod · 0.65
keySetMethod · 0.65

Tested by

no test coverage detected