Struct cast_to_str_functor¶
Defined in File LogicalProject.cpp
Struct Documentation¶
-
struct
ral::processor::strings
::
cast_to_str_functor
¶ Public Functions
-
template<typename
T
, std::enable_if_t<cudf::is_boolean<T>()>* = nullptr>
inline std::unique_ptr<cudf::column>operator()
(const cudf::column_view &col)¶
-
template<typename
T
, std::enable_if_t<cudf::is_fixed_point<T>()>* = nullptr>
inline std::unique_ptr<cudf::column>operator()
(const cudf::column_view &col)¶
-
template<typename
T
, std::enable_if_t<std::is_integral<T>::value && !cudf::is_boolean<T>()>* = nullptr>
inline std::unique_ptr<cudf::column>operator()
(const cudf::column_view &col)¶
-
template<typename
T
, std::enable_if_t<std::is_floating_point<T>::value>* = nullptr>
inline std::unique_ptr<cudf::column>operator()
(const cudf::column_view &col)¶
-
template<typename