Typedef ripple::all_arithmetic_size_enable_t¶
Typedef Documentation¶
-
template<std::size_t
Size
, typename ...Values
>
usingripple
::
all_arithmetic_size_enable_t
= std::enable_if_t<Size == sizeof...(Values) && all_arithmetic_v<Values...>, int>¶ Defines a valid type when the number of elements in the variadic pack matches the size defined by Size, and all the types are arithmetic.
- Template Parameters
Size
: The size that the pack must be.Values
: The values in the pack.