| 922 | { |
| 923 | /// Boolean AND operator, returns <tt>a && b</tt> |
| 924 | __host__ __device__ __forceinline__ bool operator()(const T &a, const T &b) const |
| 925 | { |
| 926 | return a && b; |
| 927 | } |
| 928 | }; |
| 929 | |
| 930 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected