| 51 | }; |
| 52 | |
| 53 | Stream Stream::csv_reader_from_key( |
| 54 | const std::string& key, |
| 55 | char sep, |
| 56 | char quote, |
| 57 | bool from_memory, |
| 58 | const std::filesystem::path& local_prefix, |
| 59 | std::shared_ptr<core::FileFetcher> fetcher) const { |
| 60 | return Stream(std::make_shared<stream::CSVReaderFromKey>( |
| 61 | self_, key, sep, quote, from_memory, local_prefix, fetcher)); |
| 62 | } |
| 63 | |
| 64 | Stream Stream::line_reader_from_key( |
| 65 | const std::string& key, |