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

Method GetSize

cpp/src/arrow/io/file.cc:653–656  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

651}
652
653Result<int64_t> MemoryMappedFile::GetSize() {
654 RETURN_NOT_OK(memory_map_->CheckClosed());
655 return memory_map_->size();
656}
657
658Result<int64_t> MemoryMappedFile::Tell() const {
659 RETURN_NOT_OK(memory_map_->CheckClosed());

Callers

nothing calls this directly

Calls 2

CheckClosedMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected