public final void writeToByteStream()

in src/main/java/org/apache/datasketches/memory/internal/WritableMemoryImpl.java [352:358]


  public final void writeToByteStream(final long offsetBytes, final int lengthBytes, final ByteArrayOutputStream out)
      throws IOException {
    checkBounds(offsetBytes, lengthBytes, seg.byteSize());
    final byte[] bArr = new byte[lengthBytes];
    getByteArray(offsetBytes,bArr, 0, lengthBytes); //fundamental limitation of MemorySegment
    out.writeBytes(bArr);
  }