MCPcopy Create free account
hub / github.com/ReadyTalk/avian / Hashtable

Method Hashtable

classpath/java/util/Hashtable.java:16–18  ·  view source on GitHub ↗
(int capacity)

Source from the content-addressed store, hash-verified

14 private final HashMap<K, V> map;
15
16 public Hashtable(int capacity) {
17 map = new HashMap(capacity);
18 }
19
20 public Hashtable() {
21 this(0);

Callers

nothing calls this directly

Calls 5

putMethod · 0.95
sizeMethod · 0.65
entrySetMethod · 0.65
getKeyMethod · 0.65
getValueMethod · 0.65

Tested by

no test coverage detected