MCPcopy Index your code
hub / github.com/clojure/clojure / get

Method get

src/jvm/clojure/asm/SymbolTable.java:407–409  ·  view source on GitHub ↗

@param hashCode a Entry#hashCode value. @return the list of entries which can potentially have the given hash code. The list is stored via the Entry#next field.

(final int hashCode)

Source from the content-addressed store, hash-verified

405 * via the {@link Entry#next} field.
406 */
407 private Entry get(final int hashCode) {
408 return entries[hashCode % entries.length];
409 }
410
411 /**
412 * Puts the given entry in the {@link #entries} hash set. This method does <i>not</i> check

Callers 12

addConstantIntegerMethod · 0.95
addConstantLongMethod · 0.95
addConstantUtf8Method · 0.95
addBootstrapMethodMethod · 0.95
addTypeMethod · 0.95
addUninitializedTypeMethod · 0.95
addMergedTypeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected