compactCells method

int compactCells(
  1. Pointer<H3Index> h3Set,
  2. Pointer<H3Index> compactedSet,
  3. int numHexes
)

@defgroup compactCells compactCells Functions for compactCells @{ / /** @brief compacts the given set of hexagons as best as possible

Implementation

int compactCells(
  ffi.Pointer<H3Index> h3Set,
  ffi.Pointer<H3Index> compactedSet,
  int numHexes,
) {
  return _compactCells(
    h3Set,
    compactedSet,
    numHexes,
  );
}