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

Method removeAt

core/src/main/java/io/questdb/std/IntHashSet.java:122–130  ·  view source on GitHub ↗
(int index)

Source from the content-addressed store, hash-verified

120 }
121
122 @Override
123 public void removeAt(int index) {
124 if (index < 0) {
125 int index1 = -index - 1;
126 int key = keys[index1];
127 super.removeAt(index);
128 list.remove(key);
129 }
130 }
131
132 @Override
133 public void toSink(@NotNull CharSink<?> sink) {

Callers 15

removeMethod · 0.95
testRemoveAtMethod · 0.45
untrackMethod · 0.45
getTableUpdateDetailsMethod · 0.45
rollbackToMethod · 0.45
onDurableAckSentMethod · 0.45
analyzeNotEquals0Method · 0.45
excludeKeyValueMethod · 0.45

Calls 1

removeMethod · 0.65

Tested by 2

testRemoveAtMethod · 0.36
untrackMethod · 0.36