bkietz commented on code in PR #37792: URL: https://github.com/apache/arrow/pull/37792#discussion_r1334426478
########## cpp/src/arrow/type_traits.h: ########## @@ -614,9 +637,28 @@ using is_string_type = template <typename T, typename R = void> using enable_if_string = enable_if_t<is_string_type<T>::value, R>; +template <typename T> +using is_binary_view_like_type = std::is_base_of<BinaryViewType, T>; Review Comment: I use it in a couple places when I need to specifically target string_view and not string https://github.com/apache/arrow/blob/868858f5d104a3e8e1cec8d7278ed88bb1f8bf3c/cpp/src/arrow/array/array_binary_test.cc#L562-L566 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
