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

Method hashCode

output/java_guava/1.4.17/Graphs.java:354–358  ·  view source on GitHub ↗

Returns the hash code of graph. @see Graph#hashCode()

(Graph<?> graph)

Source from the content-addressed store, hash-verified

352
353
354 public static int hashCode(Graph<?> graph) {
355 return (graph instanceof Network)
356 ? hashCode((Network<?, ?>) graph)
357 : nodeToAdjacentNodes(graph).hashCode();
358 }
359
360 /**
361 * Returns the hash code of {@code graph}.

Callers 2

hashCodeMethod · 0.95
hashCodeMethod · 0.95

Calls 3

nodeToAdjacentNodesMethod · 0.95
nodeToIncidentEdgesMethod · 0.95
hashCodeMethod · 0.65

Tested by

no test coverage detected