| 23 | namespace csv { |
| 24 | |
| 25 | std::string MakeCSVData(std::vector<std::string> lines) { |
| 26 | std::string s; |
| 27 | for (const auto& line : lines) { |
| 28 | s += line; |
| 29 | } |
| 30 | return s; |
| 31 | } |
| 32 | |
| 33 | void MakeCSVParser(std::vector<std::string> lines, ParseOptions options, int32_t num_cols, |
| 34 | MemoryPool* pool, std::shared_ptr<BlockParser>* out) { |
no outgoing calls
no test coverage detected