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

Method Write

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

Write data and update position

Source from the content-addressed store, hash-verified

1401
1402 // Write data and update position
1403 Status Write(const void* data, int64_t nbytes) {
1404 RETURN_NOT_OK(sink_->Write(data, nbytes));
1405 position_ += nbytes;
1406 return Status::OK();
1407 }
1408
1409 Status WriteEOS() {
1410 // 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