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

Function GenericToString

cpp/src/arrow/compute/function_internal.h:100–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98
99template <typename T>
100static inline enable_if_t<!has_enum_traits<T>::value, std::string> GenericToString(
101 const T& value) {
102 std::stringstream ss;
103 ss << value;
104 return ss.str();
105}
106
107template <typename T>
108static inline enable_if_t<!has_enum_traits<T>::value, std::string> GenericToString(

Callers 2

KeyHasherClass · 0.85

Calls 10

strMethod · 0.80
sorted_pairsMethod · 0.80
make_arrayMethod · 0.80
valueMethod · 0.45
ToStringMethod · 0.45
kindMethod · 0.45
scalarMethod · 0.45
typeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected