Typedef ripple::diff_enable_t¶
Defined in File type_traits.hpp
Typedef Documentation¶
-
template<typename
T
, typenameU
>
usingripple
::
diff_enable_t
= std::enable_if_t<!std::is_same_v<std::decay_t<T>, std::decay_t<U>>, int>¶ Defines a valid type when the type T is not the same as the type U, when they are both decayed.
- Template Parameters
T
: The first type for the comparison.U
: The second type for the comparison.