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

Function IsName

cpp/src/arrow/type.h:2146–2146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2144
2145 bool IsFieldPath() const { return std::holds_alternative<FieldPath>(impl_); }
2146 bool IsName() const { return std::holds_alternative<std::string>(impl_); }
2147 bool IsNested() const {
2148 if (IsName()) return false;
2149 if (IsFieldPath()) return std::get<FieldPath>(impl_).indices().size() > 1;

Callers 3

IsNestedFunction · 0.85
IsNameSequenceFunction · 0.85
nameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected