childPosToCell method

int childPosToCell(
  1. int childPos,
  2. int parent,
  3. int childRes,
  4. Pointer<H3Index> child,
)

@defgroup childPosToCell childPosToCell Functions for childPosToCell @{ / /** @brief Returns the child cell at a given position within an ordered list of all children at the specified resolution

Implementation

int childPosToCell(
  int childPos,
  int parent,
  int childRes,
  ffi.Pointer<H3Index> child,
) {
  return _childPosToCell(
    childPos,
    parent,
    childRes,
    child,
  );
}