MCPcopy Create free account
hub / github.com/questdb/questdb / get

Method get

core/src/main/java/io/questdb/std/DoubleList.java:160–165  ·  view source on GitHub ↗
(int index)

Source from the content-addressed store, hash-verified

158 }
159
160 public double get(int index) {
161 if (index < pos) {
162 return data[index];
163 }
164 throw new ArrayIndexOutOfBoundsException(index);
165 }
166
167 /**
168 * Returns last element of the list or null if list is empty.

Callers 2

testGetMethod · 0.95
toSinkMethod · 0.95

Calls

no outgoing calls

Tested by 1

testGetMethod · 0.76