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

Method ParseFinal

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

Source from the content-addressed store, hash-verified

714}
715
716Status BlockParser::ParseFinal(const std::vector<std::string_view>& data,
717 uint32_t* out_size) {
718 return impl_->Parse(data, true /* is_final */, out_size);
719}
720
721Status BlockParser::Parse(std::string_view data, uint32_t* out_size) {
722 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