| 5095 | // recordbatchwriter.cpp |
| 5096 | std::shared_ptr<arrow::ipc::RecordBatchWriter> ipc___RecordBatchStreamWriter__Open(const std::shared_ptr<arrow::io::OutputStream>& stream, const std::shared_ptr<arrow::Schema>& schema, bool use_legacy_format, arrow::ipc::MetadataVersion metadata_version); |
| 5097 | extern "C" SEXP _arrow_ipc___RecordBatchStreamWriter__Open(SEXP stream_sexp, SEXP schema_sexp, SEXP use_legacy_format_sexp, SEXP metadata_version_sexp){ |
| 5098 | BEGIN_CPP11 |
| 5099 | arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp); |
| 5100 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5101 | arrow::r::Input<bool>::type use_legacy_format(use_legacy_format_sexp); |
| 5102 | arrow::r::Input<arrow::ipc::MetadataVersion>::type metadata_version(metadata_version_sexp); |
| 5103 | return cpp11::as_sexp(ipc___RecordBatchStreamWriter__Open(stream, schema, use_legacy_format, metadata_version)); |
| 5104 | END_CPP11 |
| 5105 | } |
| 5106 | // safe-call-into-r-impl.cpp |
| 5107 | void InitializeMainRThread(); |
| 5108 | extern "C" SEXP _arrow_InitializeMainRThread(){ |
nothing calls this directly
no test coverage detected