10 #ifndef SRC_INCLUDE_SMASH_TRAITS_H_
11 #define SRC_INCLUDE_SMASH_TRAITS_H_
14 #include <type_traits>
26 template <
typename S,
typename T,
typename =
void>
35 template <
typename S,
typename T>
37 S, T, std::void_t<decltype(std::declval<S&>() << std::declval<T>())>>
43 template <typename S, typename T>
44 inline constexpr bool is_writable_to_stream_v =
45 is_writable_to_stream<S, T>::value;
Type trait to infer if a type can be streamed via the << operator.