Struct cast_to_str_functor

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 T, std::enable_if_t<cudf::is_timestamp<T>()>* = nullptr>
inline std::unique_ptr<cudf::column> operator()(const cudf::column_view &col)
template<typename T, std::enable_if_t<cudf::is_compound<T>() or cudf::is_duration<T>()>* = nullptr>
inline std::unique_ptr<cudf::column> operator()(const cudf::column_view&)