in src/main/c/h3-java/src/jniapi.c [1476:1485]
JNIEXPORT jlong JNICALL Java_com_uber_h3core_NativeMethods_childPosToCell(
JNIEnv *env, jobject thiz, jlong childPos, jlong parent, jint childRes) {
H3Index out;
H3Error err = childPosToCell(childPos, parent, childRes, &out);
if (err) {
ThrowH3Exception(env, err);
return 0;
}
return out;
}