MCPcopy Create free account
hub / github.com/questdb/questdb / putInt

Method putInt

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

Source from the content-addressed store, hash-verified

368 }
369
370 public static void putInt(long address, int value) {
371 UNSAFE.putInt(address, value);
372 }
373
374 public static void putInt(Object o, long offset, int value) {
375 UNSAFE.putInt(o, offset, value);

Calls 1

putIntMethod · 0.65