@Override public boolean equals(Object obj) { try { return obj instanceof BytesStore && BytesInternal.contentEqual(this, (BytesStore) obj); } catch (IORuntimeException e) { throw new AssertionError(e); } }
@NotNull @Override public String toString() { try { return BytesInternal.toString(this); } catch (IllegalStateException | IORuntimeException e) { return e.toString(); } }