Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
put
Method · 0.95
size
Method · 0.65
entrySet
Method · 0.65
getKey
Method · 0.65
getValue
Method · 0.65
Tested by
no test coverage detected