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