Version: SMASH-3.2
traits.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #ifndef SRC_INCLUDE_SMASH_TRAITS_H_
11 #define SRC_INCLUDE_SMASH_TRAITS_H_
12 
13 #include <sstream>
14 #include <type_traits>
15 
16 namespace smash {
17 
26 template <typename S, typename T, typename = void>
27 struct is_writable_to_stream : std::false_type {};
28 
35 template <typename S, typename T>
37  S, T, std::void_t<decltype(std::declval<S&>() << std::declval<T>())>>
38  : std::true_type {};
39 
43 template <typename S, typename T>
44 inline constexpr bool is_writable_to_stream_v =
45  is_writable_to_stream<S, T>::value;
46 
47 } // namespace smash
48 
49 #endif // SRC_INCLUDE_SMASH_TRAITS_H_
Definition: action.h:24
#define S(x, n)
Definition: sha256.cc:54
Type trait to infer if a type can be streamed via the << operator.
Definition: traits.h:27