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

Method toSink

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

Source from the content-addressed store, hash-verified

201 }
202
203 @Override
204 public void toSink(@NotNull CharSink<?> sink) {
205 sink.putAscii('[');
206 for (int i = 0, k = size(); i < k; i++) {
207 if (i > 0) {
208 sink.putAscii(',');
209 }
210 sink.put(get(i));
211 }
212 sink.putAscii(']');
213 }
214
215 public void toSink(CharSink<?> sink, int exceptValue) {
216 sink.putAscii('[');

Callers 1

toStringMethod · 0.95

Calls 4

sizeMethod · 0.95
getMethod · 0.95
putAsciiMethod · 0.65
putMethod · 0.65

Tested by

no test coverage detected