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

Method ParseFinal

cpp/src/arrow/csv/parser.cc:704–707  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

702}
703
704Status BlockParser::ParseFinal(const std::vector<std::string_view>& data,
705 uint32_t* out_size) {
706 return impl_->Parse(data, true /* is_final */, out_size);
707}
708
709Status BlockParser::Parse(std::string_view data, uint32_t* out_size) {
710 return impl_->Parse({data}, false /* is_final */, out_size);

Callers 3

operator()Method · 0.80
ParseFinalFunction · 0.80
AssertParseFinalFunction · 0.80

Calls 1

ParseMethod · 0.45

Tested by 2

ParseFinalFunction · 0.64
AssertParseFinalFunction · 0.64