// // Created by brett on 6/8/23. // #ifndef PARKSNREC_TRAITS_H #define PARKSNREC_TRAITS_H #include #include namespace parks { template struct is_streamable : public std::false_type {}; template struct is_streamable() << std::declval()), std::ostream&>::value>> : public std::true_type {}; } #endif //PARKSNREC_TRAITS_H