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

Method IsNull

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

Source from the content-addressed store, hash-verified

197 }
198
199 bool IsNull(const uint8_t* data, uint32_t size, bool quoted) {
200 return options_.strings_can_be_null &&
201 (!quoted || options_.quoted_strings_can_be_null) &&
202 ValueDecoder::IsNull(data, size, false /* quoted */);
203 }
204};
205
206//

Callers

nothing calls this directly

Calls 1

IsNullFunction · 0.50

Tested by

no test coverage detected