uncompactCellsSize method

int uncompactCellsSize(
  1. Pointer<H3Index> compactedSet,
  2. int numCompacted,
  3. int res,
  4. Pointer<Int64> out,
)

@defgroup uncompactCells uncompactCells Functions for uncompactCells @{ / /** @brief determines the exact number of hexagons that will be uncompacted from the compacted set

Implementation

int uncompactCellsSize(
  ffi.Pointer<H3Index> compactedSet,
  int numCompacted,
  int res,
  ffi.Pointer<ffi.Int64> out,
) {
  return _uncompactCellsSize(
    compactedSet,
    numCompacted,
    res,
    out,
  );
}