Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/questdb/questdb
/ ObjList
Method
ObjList
core/src/main/java/io/questdb/std/ObjList.java:39–42 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
37
private
int
pos = 0;
38
39
@SuppressWarnings(
"unchecked"
)
40
public
ObjList() {
41
this.buffer = (T[])
new
Object[DEFAULT_ARRAY_SIZE];
42
}
43
44
@SuppressWarnings(
"unchecked"
)
45
public
ObjList(ObjList<? extends T> other) {
Callers
nothing calls this directly
Calls
2
setPos
Method · 0.95
size
Method · 0.65
Tested by
no test coverage detected