| 3636 | // io.cpp |
| 3637 | std::shared_ptr<arrow::Buffer> io___Readable__Read(const std::shared_ptr<arrow::io::Readable>& x, int64_t nbytes); |
| 3638 | extern "C" SEXP _arrow_io___Readable__Read(SEXP x_sexp, SEXP nbytes_sexp){ |
| 3639 | BEGIN_CPP11 |
| 3640 | arrow::r::Input<const std::shared_ptr<arrow::io::Readable>&>::type x(x_sexp); |
| 3641 | arrow::r::Input<int64_t>::type nbytes(nbytes_sexp); |
| 3642 | return cpp11::as_sexp(io___Readable__Read(x, nbytes)); |
| 3643 | END_CPP11 |
| 3644 | } |
| 3645 | // io.cpp |
| 3646 | void io___InputStream__Close(const std::shared_ptr<arrow::io::InputStream>& x); |
| 3647 | extern "C" SEXP _arrow_io___InputStream__Close(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected