Template implementations for uhd::cast::to_str() for common types.
More...
Typedefs | |
| template<typename T > | |
| using | has_to_string_method = decltype(has_to_string_method_impl<T>(0)) |
Functions | |
| template<typename T > | |
| auto | has_to_string_method_impl (int) -> decltype(std::declval< T >().to_string(), std::true_type{}) |
| template<typename T > | |
| auto | has_to_string_method_impl (...) -> std::false_type |
Template implementations for uhd::cast::to_str() for common types.
| using uhd::cast::detail::has_to_string_method = decltype(has_to_string_method_impl<T>(0)) |
| auto uhd::cast::detail::has_to_string_method_impl | ( | ... | ) | -> std::false_type |
| auto uhd::cast::detail::has_to_string_method_impl | ( | int | ) | -> decltype(std::declval< T >().to_string(), std::true_type{}) |