Typedef ripple::array_size_enable_t¶
Typedef Documentation¶
-
template<typename
T, size_tSize>
usingripple::array_size_enable_t= std::enable_if_t<is_array_v<T>&&(array_traits_t<T>::size = =Size), int>¶ Defines a valid type if the type T is an array and the size of the array is Size.
- Template Parameters
T: The type to check if is an array.Size: The size the array must have.