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

Function nested_refs

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

Source from the content-addressed store, hash-verified

2171 return IsName() ? &std::get<std::string>(impl_) : NULLPTR;
2172 }
2173 const std::vector<FieldRef>* nested_refs() const {
2174 return std::holds_alternative<std::vector<FieldRef>>(impl_)
2175 ? &std::get<std::vector<FieldRef>>(impl_)
2176 : NULLPTR;
2177 }
2178
2179 /// \brief Retrieve FieldPath of every child field which matches this FieldRef.
2180 std::vector<FieldPath> FindAll(const Schema& schema) const;

Callers 1

IsNameSequenceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected