in src/main/java/com/uber/h3core/util/CoordIJ.java [40:45]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CoordIJ ij = (CoordIJ) o;
return ij.i == i && ij.j == j;
}