25 #ifndef CARGO_IS_LIKE_TUPLE_HPP
26 #define CARGO_IS_LIKE_TUPLE_HPP
34 static constexpr
bool value = std::false_type::value;
37 template<
typename ... R>
39 static constexpr
bool value = std::true_type::value;
42 template<
typename ... R>
44 static constexpr
bool value = std::true_type::value;
49 #endif // CARGO_IS_LIKE_TUPLE_HPP
Definition: is-like-tuple.hpp:33
static constexpr bool value
Definition: is-like-tuple.hpp:34