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

Method checkExtend

core/src/main/java/io/questdb/std/str/Path.java:487–492  ·  view source on GitHub ↗
(int extra)

Source from the content-addressed store, hash-verified

485 }
486
487 private void checkExtend(int extra) {
488 int requiredCapacity = size() + extra;
489 if (requiredCapacity > capacity) {
490 extend(requiredCapacity);
491 }
492 }
493
494 @NotNull
495 private Path putByte0(byte b) {

Callers 5

prefixMethod · 0.95
putMethod · 0.95
putAsciiMethod · 0.95
putNonAsciiMethod · 0.95
zeroPadMethod · 0.95

Calls 2

sizeMethod · 0.95
extendMethod · 0.95

Tested by

no test coverage detected