isPentagon method

int isPentagon(
  1. int h
)

@defgroup isPentagon isPentagon Functions for isPentagon @{ / /** @brief determines if an H3 cell is a pentagon

Implementation

int isPentagon(
  int h,
) {
  return _isPentagon(
    h,
  );
}