| 3825 | // io.cpp |
| 3826 | void io___BufferOutputStream__Write(const std::shared_ptr<arrow::io::BufferOutputStream>& stream, cpp11::raws bytes); |
| 3827 | extern "C" SEXP _arrow_io___BufferOutputStream__Write(SEXP stream_sexp, SEXP bytes_sexp){ |
| 3828 | BEGIN_CPP11 |
| 3829 | arrow::r::Input<const std::shared_ptr<arrow::io::BufferOutputStream>&>::type stream(stream_sexp); |
| 3830 | arrow::r::Input<cpp11::raws>::type bytes(bytes_sexp); |
| 3831 | io___BufferOutputStream__Write(stream, bytes); |
| 3832 | return R_NilValue; |
| 3833 | END_CPP11 |
| 3834 | } |
| 3835 | // io.cpp |
| 3836 | std::shared_ptr<arrow::io::InputStream> MakeRConnectionInputStream(cpp11::sexp con); |
| 3837 | extern "C" SEXP _arrow_MakeRConnectionInputStream(SEXP con_sexp){ |
nothing calls this directly
no test coverage detected