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

Method add

core/src/main/java/io/questdb/std/ObjHashSet.java:67–69  ·  view source on GitHub ↗
(T key)

Source from the content-addressed store, hash-verified

65 }
66
67 public boolean add(T key) {
68 return addAt(keyIndex(key), key);
69 }
70
71 public void addAll(ObjHashSet<? extends T> that) {
72 for (int i = 0, n = that.size(); i < n; i++) {

Callers 11

testBasicOperationsMethod · 0.95
testNullMethod · 0.95
testRemoveMethod · 0.95
testGetReaderFailureMethod · 0.95
closeMethod · 0.95
addAllMethod · 0.95

Calls 2

addAtMethod · 0.95
keyIndexMethod · 0.95