ΒΆtemplate <typename T>
typename std::
enable_if<std::is_unsigned<T>::value, T>::type
AbsoluteDifference(T X, T Y)
template <typename T>
typename std::
enable_if<std::is_unsigned<T>::value, T>::type
AbsoluteDifference(T X, T Y)
Description
Subtract two unsigned integers, X and Y, of type T and return the absolute value of the result.
Declared at: llvm/include/llvm/Support/MathExtras.h:784
Templates
- T
Parameters
- T X
- T Y