cellToChildrenSize method

int cellToChildrenSize(
  1. int h,
  2. int childRes,
  3. Pointer<Int64> out
)

@defgroup cellToChildren cellToChildren Functions for cellToChildren @{ / /** @brief determines the exact number of children (or grandchildren, etc) that would be returned for the given cell

Implementation

int cellToChildrenSize(
  int h,
  int childRes,
  ffi.Pointer<ffi.Int64> out,
) {
  return _cellToChildrenSize(
    h,
    childRes,
    out,
  );
}