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

Method getQuick

core/src/main/java/io/questdb/std/DoubleList.java:188–190  ·  view source on GitHub ↗

Returns element at the specified position. This method does not do bounds check and may cause memory corruption if index is out of bounds. Instead, the responsibility to check bounds is placed on application code, which is often the case anyway, for example in indexed for() loop. @param index of th

(int index)

Source from the content-addressed store, hash-verified

186 * @return element at the specified position.
187 */
188 public double getQuick(int index) {
189 return data[index];
190 }
191
192 /**
193 * {@inheritDoc}

Callers 3

hashCodeMethod · 0.95
indexOfMethod · 0.95
equalsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected