| 869 | { |
| 870 | /// Boolean sum operator, returns <tt>a + b</tt> |
| 871 | __host__ __device__ __forceinline__ T operator()(const T &a, const T &b) const |
| 872 | { |
| 873 | return a + b; |
| 874 | } |
| 875 | }; |
| 876 | |
| 877 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected