| 93 | class CSVBufferIterator { |
| 94 | public: |
| 95 | static Iterator<std::shared_ptr<Buffer>> Make( |
| 96 | Iterator<std::shared_ptr<Buffer>> buffer_iterator) { |
| 97 | Transformer<std::shared_ptr<Buffer>, std::shared_ptr<Buffer>> fn = |
| 98 | CSVBufferIterator(); |
| 99 | return MakeTransformedIterator(std::move(buffer_iterator), fn); |
| 100 | } |
| 101 | |
| 102 | static AsyncGenerator<std::shared_ptr<Buffer>> MakeAsync( |
| 103 | AsyncGenerator<std::shared_ptr<Buffer>> buffer_iterator) { |
nothing calls this directly
no test coverage detected