10 template < std::
size_t lhs, std::
size_t rhs >
13 static constexpr
auto value = lhs > rhs;
15 template < std::
size_t number_of_bytes >
17 std::conditional_t< greater_than< number_of_bytes, 0 >::value,
18 std::array< std::byte, number_of_bytes >, std::vector< std::byte > >;
static constexpr auto value
Definition: message_type.hpp:13
std::conditional_t< greater_than< number_of_bytes, 0 >::value, std::array< std::byte, number_of_bytes >, std::vector< std::byte > > message_t
Definition: message_type.hpp:18
Definition: message_type.hpp:11