Typedef ripple::variadic_lt_enable_t¶
Defined in File type_traits.hpp
Typedef Documentation¶
-
template<std::size_t
Size
, typename ...Values
>
usingripple
::
variadic_lt_enable_t
= std::enable_if_t<(sizeof...(Values) < Size), int>¶ Defines a valid type when the number of elements in the variadic pack is less than the size defined by Size.
- Template Parameters
Size
: The size that the pack must be.Values
: The values in the pack.