int64ToBytes static method

DC int64ToBytes(
  1. int value
)

Implementation

static DC int64ToBytes(int value) {
  var rt = new DC(8);
  rt.setInt64(0, value);
  return rt;
}