| 3679 | // io.cpp |
| 3680 | std::shared_ptr<arrow::Buffer> io___Readable__Read(const std::shared_ptr<arrow::io::Readable>& x, int64_t nbytes); |
| 3681 | extern "C" SEXP _arrow_io___Readable__Read(SEXP x_sexp, SEXP nbytes_sexp){ |
| 3682 | BEGIN_CPP11 |
| 3683 | arrow::r::Input<const std::shared_ptr<arrow::io::Readable>&>::type x(x_sexp); |
| 3684 | arrow::r::Input<int64_t>::type nbytes(nbytes_sexp); |
| 3685 | return cpp11::as_sexp(io___Readable__Read(x, nbytes)); |
| 3686 | END_CPP11 |
| 3687 | } |
| 3688 | // io.cpp |
| 3689 | void io___InputStream__Close(const std::shared_ptr<arrow::io::InputStream>& x); |
| 3690 | extern "C" SEXP _arrow_io___InputStream__Close(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected