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

Function IsWhitespace

cpp/src/arrow/csv/converter.cc:59–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59inline bool IsWhitespace(uint8_t c) {
60 if (ARROW_PREDICT_TRUE(c > ' ')) {
61 return false;
62 }
63 return c == ' ' || c == '\t';
64}
65
66// Updates data_inout and size_inout to not include leading/trailing whitespace
67// characters.

Callers 1

TrimWhiteSpaceFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected