MCPcopy Index your code
hub / github.com/careercup/ctci / equivalent

Method equivalent

java/Chapter 8/Question8_10/Cell.java:11–13  ·  view source on GitHub ↗
(Cell<K, V> c)

Source from the content-addressed store, hash-verified

9 }
10
11 public boolean equivalent(Cell<K, V> c) {
12 return equivalent(c.getKey());
13 }
14
15 public boolean equivalent(K k) {
16 return key.equals(k);

Callers 2

putMethod · 0.80
getMethod · 0.80

Calls 1

getKeyMethod · 0.80

Tested by

no test coverage detected