| 896 | { |
| 897 | /// Boolean min operator, returns <tt>(a < b) ? a : b</tt> |
| 898 | __host__ __device__ __forceinline__ T operator()(const T &a, const T &b) const |
| 899 | { |
| 900 | return CUB_MIN(a, b); |
| 901 | } |
| 902 | }; |
| 903 | |
| 904 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected