| 126 | struct AbsoluteValue { |
| 127 | template <typename T, typename Arg> |
| 128 | static constexpr enable_if_floating_value<Arg, T> Call(KernelContext*, Arg arg, |
| 129 | Status*) { |
| 130 | return std::fabs(arg); |
| 131 | } |
| 132 | |
| 133 | template <typename T, typename Arg> |
| 134 | static constexpr enable_if_unsigned_integer_value<Arg, T> Call(KernelContext*, Arg arg, |
nothing calls this directly
no test coverage detected