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

Function GetTypes

cpp/src/arrow/compute/exec.h:252–258  ·  view source on GitHub ↗

\brief A convenience for returning the types from the batch.

Source from the content-addressed store, hash-verified

250
251 /// \brief A convenience for returning the types from the batch.
252 std::vector<TypeHolder> GetTypes() const {
253 std::vector<TypeHolder> result;
254 for (const auto& value : this->values) {
255 result.emplace_back(value.type());
256 }
257 return result;
258 }
259
260 std::string ToString() const;
261};

Callers 4

BindNonRecursiveFunction · 0.70
ExecuteScalarExpressionFunction · 0.70
HandleInconsistentTypesFunction · 0.70

Calls 2

emplace_backMethod · 0.80
typeMethod · 0.45

Tested by 1