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

Function CountQuotes

cpp/src/arrow/csv/writer.cc:102–104  ·  view source on GitHub ↗

Counts the number of quotes in s.

Source from the content-addressed store, hash-verified

100
101// Counts the number of quotes in s.
102int64_t CountQuotes(std::string_view s) {
103 return static_cast<int64_t>(std::count(s.begin(), s.end(), '"'));
104}
105
106// Matching quote pair character length.
107constexpr int64_t kQuoteCount = 2;

Callers 3

UpdateRowLengthsMethod · 0.85
MakeMethod · 0.85
CalculateHeaderSizeMethod · 0.85

Calls 3

countFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected