private static int longToIntSize()

in src/main/java/com/uber/h3core/H3Core.java [1208:1213]


  private static int longToIntSize(long sz) {
    if (sz < 0 || sz > Integer.MAX_VALUE) {
      throw new IllegalArgumentException(String.format("size %d is out of range", sz));
    }
    return (int) sz;
  }