public long mismatch()

in src/main/java/org/apache/datasketches/memory/internal/ResourceImpl.java [484:489]


  public long mismatch(final Resource that) {
    Objects.requireNonNull(that);
    if (!that.isAlive()) { throw new IllegalArgumentException("Given argument is not alive."); }
    final ResourceImpl that2 = (ResourceImpl) that;
    return seg.mismatch(that2.seg);
  }