Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ LinkedHashMap
Method
LinkedHashMap
classpath/java/util/LinkedHashMap.java:35–38 ·
view source on GitHub ↗
(int capacity)
Source
from the content-addressed store, hash-verified
33
private
HashMap<K, LinkedKey<K>> lookup;
34
35
public
LinkedHashMap(
int
capacity) {
36
super(capacity);
37
lookup =
new
HashMap<K, LinkedKey<K>>();
38
}
39
40
public
LinkedHashMap() {
41
this(0);
Callers
nothing calls this directly
Calls
2
size
Method · 0.65
putAll
Method · 0.65
Tested by
no test coverage detected