Typedef ripple::tuple_enable_t¶
Defined in File tuple_traits.hpp
Typedef Documentation¶
-
template<typename ...
Ts
>
usingripple
::
tuple_enable_t
= std::enable_if_t<is_tuple_v<nth_element_t<0, Ts...>>, int>¶ Defines a valid type if the first element in the variadic pack is a tuple, otherwise does not define a valid type.
- Template Parameters
T
: The type to base the enable on.Ts
: The rest of the types which do not effect the enable.