MCPcopy Create free account
hub / github.com/apache/arrow / Make

Method Make

cpp/src/arrow/csv/reader.cc:95–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93class 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) {

Callers

nothing calls this directly

Calls 2

CSVBufferIteratorClass · 0.85
MakeTransformedIteratorFunction · 0.85

Tested by

no test coverage detected