| 97 | using value_type = decltype(v); |
| 98 | HOST_DEVICE constexpr operator value_type() const noexcept { return value; } |
| 99 | HOST_DEVICE constexpr value_type operator()() const noexcept { return value; } |
| 100 | }; |
| 101 | |
| 102 | template <class T, T v> |
nothing calls this directly
no outgoing calls
no test coverage detected