| 101 | const std::shared_ptr<ChunkedArray>& chunked_array); |
| 102 | |
| 103 | static SEXP LazyConvert(const std::shared_ptr<ChunkedArray>& chunked_array, |
| 104 | RTasks& tasks) { |
| 105 | auto converter = Make(chunked_array); |
| 106 | return converter->ScheduleConvertTasks(tasks, converter); |
| 107 | } |
| 108 | |
| 109 | static SEXP Convert(const std::shared_ptr<ChunkedArray>& chunked_array, |
| 110 | bool use_threads) { |
nothing calls this directly
no test coverage detected