uncompact method

int uncompact(
  1. Pointer<Uint64> compactedSet,
  2. int numHexes,
  3. Pointer<Uint64> h3Set,
  4. int maxHexes,
  5. int res,
)

Implementation

int uncompact(
  ffi.Pointer<ffi.Uint64> compactedSet,
  int numHexes,
  ffi.Pointer<ffi.Uint64> h3Set,
  int maxHexes,
  int res,
) {
  return _uncompact(
    compactedSet,
    numHexes,
    h3Set,
    maxHexes,
    res,
  );
}