MCPcopy Index your code
hub / github.com/questdb/questdb / getQuick

Method getQuick

core/src/main/java/io/questdb/std/ByteList.java:116–119  ·  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

114 * @return element at the specified position.
115 */
116 public byte getQuick(int index) {
117 assert index < pos;
118 return data[index];
119 }
120
121 @Override
122 public int hashCode() {

Callers 5

testSmokeMethod · 0.95
getMethod · 0.95
hashCodeMethod · 0.95
removeMethod · 0.95
equalsMethod · 0.95

Calls

no outgoing calls

Tested by 1

testSmokeMethod · 0.76