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

Method DoTell

cpp/src/arrow/io/memory.cc:282–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280bool BufferReader::closed() const { return !is_open_; }
281
282Result<int64_t> BufferReader::DoTell() const {
283 RETURN_NOT_OK(CheckClosed());
284 return position_;
285}
286
287Result<std::string_view> BufferReader::DoPeek(int64_t nbytes) {
288 RETURN_NOT_OK(CheckClosed());

Callers

nothing calls this directly

Calls 1

CheckClosedFunction · 0.70

Tested by

no test coverage detected