MCPcopy Create free account
hub / github.com/apache/arrow / Write

Method Write

cpp/src/arrow/ipc/writer.cc:1396–1400  ·  view source on GitHub ↗

Write data and update position

Source from the content-addressed store, hash-verified

1394
1395 // Write data and update position
1396 Status Write(const void* data, int64_t nbytes) {
1397 RETURN_NOT_OK(sink_->Write(data, nbytes));
1398 position_ += nbytes;
1399 return Status::OK();
1400 }
1401
1402 Status WriteEOS() {
1403 // End of stream marker

Callers 3

WriteIpcPayloadFunction · 0.45
WriteStridedTensorDataFunction · 0.45
WriteTensorFunction · 0.45

Calls 1

OKFunction · 0.50

Tested by

no test coverage detected