in datasketches-memory-java8/src/main/java/org/apache/datasketches/memory/internal/MapNonNativeWritableMemoryImpl.java [75:87]
BaseWritableBufferImpl toWritableBuffer(final boolean readOnly, final ByteOrder byteOrder) {
int typeIdOut = removeNnBuf(typeId) | BUFFER | (readOnly ? READONLY : 0);
if (byteOrder == ByteOrder.nativeOrder()) {
typeIdOut |= NATIVE;
return new MapWritableBufferImpl(
dirWMap, offsetBytes, capacityBytes, typeIdOut, cumOffsetBytes);
} else {
typeIdOut |= NONNATIVE;
return new MapNonNativeWritableBufferImpl(
dirWMap, offsetBytes, capacityBytes, typeIdOut, cumOffsetBytes);
}
}