compact method

int compact(
  1. Pointer<Uint64> h3Set,
  2. Pointer<Uint64> compactedSet,
  3. int numHexes
)

Implementation

int compact(
  ffi.Pointer<ffi.Uint64> h3Set,
  ffi.Pointer<ffi.Uint64> compactedSet,
  int numHexes,
) {
  return _compact(
    h3Set,
    compactedSet,
    numHexes,
  );
}