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

Function GetAll

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

Source from the content-addressed store, hash-verified

2237 /// \brief Get all children matching this FieldRef.
2238 template <typename T>
2239 std::vector<GetType<T>> GetAll(const T& root) const {
2240 std::vector<GetType<T>> out;
2241 for (const auto& match : FindAll(root)) {
2242 out.push_back(match.Get(root).ValueOrDie());
2243 }
2244 return out;
2245 }
2246 /// \brief Get all children matching this FieldRef.
2247 ///
2248 /// Unlike `FieldRef::GetAll`, this variant is not zero-copy and the retrieved

Callers 1

OutputSchemaFromOptionsFunction · 0.85

Calls 3

push_backMethod · 0.80
ValueOrDieMethod · 0.80
GetMethod · 0.45

Tested by

no test coverage detected