Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ set
Method
set
classpath/java/util/LinkedList.java:183–189 ·
view source on GitHub ↗
(int index, T value)
Source
from the content-addressed store, hash-verified
181
}
182
183
@Override
184
public
T set(
int
index, T value) {
185
Cell<T> c = find(index);
186
T old = c.value;
187
c.value = value;
188
return
old;
189
}
190
191
@Override
192
public
T peek() {
Callers
nothing calls this directly
Calls
1
find
Method · 0.95
Tested by
no test coverage detected