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

Function GenericToString

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

Source from the content-addressed store, hash-verified

113
114template <typename T>
115static inline enable_if_t<!has_enum_traits<T>::value, std::string> GenericToString(
116 const T& value) {
117 std::stringstream ss;
118 ss << value;
119 return ss.str();
120}
121
122template <typename T>
123static 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