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

Method hashCode

src/org/antlr/codebuff/misc/Quad.java:35–43  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33 }
34
35 @Override
36 public int hashCode() {
37 int hash = MurmurHash.initialize();
38 hash = MurmurHash.update(hash, a);
39 hash = MurmurHash.update(hash, b);
40 hash = MurmurHash.update(hash, c);
41 hash = MurmurHash.update(hash, d);
42 return MurmurHash.finish(hash, 4);
43 }
44
45 @Override
46 public String toString() {

Callers

nothing calls this directly

Calls 3

initializeMethod · 0.45
updateMethod · 0.45
finishMethod · 0.45

Tested by

no test coverage detected