[[arrow::export]]
| 76 | |
| 77 | // [[arrow::export]] |
| 78 | std::shared_ptr<arrow::Buffer> io___RandomAccessFile__Read0( |
| 79 | const std::shared_ptr<arrow::io::RandomAccessFile>& x) { |
| 80 | int64_t current = ValueOrStop(x->Tell()); |
| 81 | |
| 82 | int64_t n = ValueOrStop(x->GetSize()); |
| 83 | |
| 84 | return ValueOrStop(x->Read(n - current)); |
| 85 | } |
| 86 | |
| 87 | // [[arrow::export]] |
| 88 | std::shared_ptr<arrow::Buffer> io___RandomAccessFile__ReadAt( |
no test coverage detected