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

Function Views

cpp/src/arrow/csv/parser_test.cc:134–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132}
133
134std::vector<std::string_view> Views(const std::vector<std::string>& strings) {
135 std::vector<std::string_view> views(strings.size());
136 std::transform(strings.begin(), strings.end(), views.begin(),
137 [](const std::string& s) { return std::string_view(s); });
138 return views;
139}
140
141Status Parse(BlockParser& parser, const std::string& str, uint32_t* out_size) {
142 return parser.Parse(std::string_view(str), out_size);

Callers 1

TESTFunction · 0.85

Calls 3

sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected