| 3868 | // io.cpp |
| 3869 | void io___BufferOutputStream__Write(const std::shared_ptr<arrow::io::BufferOutputStream>& stream, cpp11::raws bytes); |
| 3870 | extern "C" SEXP _arrow_io___BufferOutputStream__Write(SEXP stream_sexp, SEXP bytes_sexp){ |
| 3871 | BEGIN_CPP11 |
| 3872 | arrow::r::Input<const std::shared_ptr<arrow::io::BufferOutputStream>&>::type stream(stream_sexp); |
| 3873 | arrow::r::Input<cpp11::raws>::type bytes(bytes_sexp); |
| 3874 | io___BufferOutputStream__Write(stream, bytes); |
| 3875 | return R_NilValue; |
| 3876 | END_CPP11 |
| 3877 | } |
| 3878 | // io.cpp |
| 3879 | std::shared_ptr<arrow::io::InputStream> MakeRConnectionInputStream(cpp11::sexp con); |
| 3880 | extern "C" SEXP _arrow_MakeRConnectionInputStream(SEXP con_sexp){ |
nothing calls this directly
no test coverage detected