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

Function ToTypeName

cpp/src/arrow/type.cc:176–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174};
175
176std::string ToTypeName(Type::type id) {
177 TypeIdToTypeNameVisitor visitor;
178
179 ARROW_CHECK_OK(VisitTypeIdInline(id, &visitor));
180 return std::move(visitor.out);
181}
182
183std::string ToString(Type::type id) {
184 switch (id) {

Callers 3

TESTFunction · 0.85
LoadCommonMethod · 0.85
DispatchExactMethod · 0.85

Calls 1

VisitTypeIdInlineFunction · 0.85

Tested by 1

TESTFunction · 0.68