MCPcopy Index your code
hub / github.com/antlr/codebuff / get

Method get

output/java_guava/1.4.17/Maps.java:863–873  ·  view source on GitHub ↗
(@Nullable Object key)

Source from the content-addressed store, hash-verified

861 }
862
863 @Override
864 public V get(@Nullable Object key) {
865 if (Collections2.safeContains(backingSet(), key)) {
866
867 @SuppressWarnings("unchecked") // unsafe, but Javadoc warns about it
868 K k = (K) key;
869 return function.apply(k);
870 } else {
871 return null;
872 }
873 }
874
875 @Override
876 public V remove(@Nullable Object key) {

Callers

nothing calls this directly

Calls 3

safeContainsMethod · 0.95
backingSetMethod · 0.95
applyMethod · 0.65

Tested by

no test coverage detected