Typedef ripple::non_tuple_enable_t¶
Typedef Documentation¶
-
template<typename ...
Ts
>
usingripple
::
non_tuple_enable_t
= std::enable_if_t<!is_tuple_v<nth_element_t<0, Ts...>>, int>¶ Defines a valid type if the first type in the variadic pack is not 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.