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

Method putByte

core/src/main/java/io/questdb/std/Unsafe.java:354–356  ·  view source on GitHub ↗
(long address, byte value)

Source from the content-addressed store, hash-verified

352 }
353
354 public static void putByte(long address, byte value) {
355 UNSAFE.putByte(address, value);
356 }
357
358 public static void putChar(long address, char value) {
359 UNSAFE.putChar(address, value);

Calls 1

putByteMethod · 0.65