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

Method equals

core/src/main/java/io/questdb/std/ByteList.java:83–86  ·  view source on GitHub ↗

{@inheritDoc}

(Object that)

Source from the content-addressed store, hash-verified

81 * {@inheritDoc}
82 */
83 @Override
84 public boolean equals(Object that) {
85 return this == that || that instanceof ByteList && equals((ByteList) that);
86 }
87
88 public void extendAndSet(int index, byte value) {
89 checkCapacity(index + 1);

Callers

nothing calls this directly

Calls 2

getQuickMethod · 0.95
getQuickMethod · 0.65

Tested by

no test coverage detected