| 3767 | // io.cpp |
| 3768 | void io___Writable__write(const std::shared_ptr<arrow::io::Writable>& stream, const std::shared_ptr<arrow::Buffer>& buf); |
| 3769 | extern "C" SEXP _arrow_io___Writable__write(SEXP stream_sexp, SEXP buf_sexp){ |
| 3770 | BEGIN_CPP11 |
| 3771 | arrow::r::Input<const std::shared_ptr<arrow::io::Writable>&>::type stream(stream_sexp); |
| 3772 | arrow::r::Input<const std::shared_ptr<arrow::Buffer>&>::type buf(buf_sexp); |
| 3773 | io___Writable__write(stream, buf); |
| 3774 | return R_NilValue; |
| 3775 | END_CPP11 |
| 3776 | } |
| 3777 | // io.cpp |
| 3778 | r_vec_size io___OutputStream__Tell(const std::shared_ptr<arrow::io::OutputStream>& stream); |
| 3779 | extern "C" SEXP _arrow_io___OutputStream__Tell(SEXP stream_sexp){ |
nothing calls this directly
no test coverage detected