MCPcopy
hub / github.com/questdb/questdb / toSinkSorted

Method toSinkSorted

core/src/main/java/io/questdb/std/LongList.java:497–503  ·  view source on GitHub ↗
(@NotNull CharSink<?> sink)

Source from the content-addressed store, hash-verified

495 }
496
497 public void toSinkSorted(@NotNull CharSink<?> sink) {
498 LongList temp = new LongList(size());
499 temp.addAll(this);
500 temp.sort();
501 temp.toSink(sink);
502 temp.clear();
503 }
504
505 /**
506 * {@inheritDoc}

Callers 1

toSinkMethod · 0.80

Calls 5

sizeMethod · 0.95
addAllMethod · 0.95
sortMethod · 0.95
toSinkMethod · 0.95
clearMethod · 0.95

Tested by

no test coverage detected