| 3810 | // io.cpp |
| 3811 | void io___Writable__write(const std::shared_ptr<arrow::io::Writable>& stream, const std::shared_ptr<arrow::Buffer>& buf); |
| 3812 | extern "C" SEXP _arrow_io___Writable__write(SEXP stream_sexp, SEXP buf_sexp){ |
| 3813 | BEGIN_CPP11 |
| 3814 | arrow::r::Input<const std::shared_ptr<arrow::io::Writable>&>::type stream(stream_sexp); |
| 3815 | arrow::r::Input<const std::shared_ptr<arrow::Buffer>&>::type buf(buf_sexp); |
| 3816 | io___Writable__write(stream, buf); |
| 3817 | return R_NilValue; |
| 3818 | END_CPP11 |
| 3819 | } |
| 3820 | // io.cpp |
| 3821 | r_vec_size io___OutputStream__Tell(const std::shared_ptr<arrow::io::OutputStream>& stream); |
| 3822 | extern "C" SEXP _arrow_io___OutputStream__Tell(SEXP stream_sexp){ |
nothing calls this directly
no test coverage detected