bdSetInt64 function

void bdSetInt64(
  1. ByteData bd,
  2. int offset,
  3. int value
)

Write a non-negative integer as a little-endian signed-64-bit value. For NebulaDB all int columns are non-negative, so this is identical to bdSetUint64 but named separately for clarity.

Implementation

void bdSetInt64(ByteData bd, int offset, int value) =>
    bdSetUint64(bd, offset, value);