| 3411 | // filesystem.cpp |
| 3412 | cpp11::list fs___FileSystem__GetTargetInfos_Paths(const std::shared_ptr<fs::FileSystem>& file_system, const std::vector<std::string>& paths); |
| 3413 | extern "C" SEXP _arrow_fs___FileSystem__GetTargetInfos_Paths(SEXP file_system_sexp, SEXP paths_sexp){ |
| 3414 | BEGIN_CPP11 |
| 3415 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3416 | arrow::r::Input<const std::vector<std::string>&>::type paths(paths_sexp); |
| 3417 | return cpp11::as_sexp(fs___FileSystem__GetTargetInfos_Paths(file_system, paths)); |
| 3418 | END_CPP11 |
| 3419 | } |
| 3420 | // filesystem.cpp |
| 3421 | cpp11::list fs___FileSystem__GetTargetInfos_FileSelector(const std::shared_ptr<fs::FileSystem>& file_system, const std::shared_ptr<fs::FileSelector>& selector); |
| 3422 | extern "C" SEXP _arrow_fs___FileSystem__GetTargetInfos_FileSelector(SEXP file_system_sexp, SEXP selector_sexp){ |
nothing calls this directly
no test coverage detected