| 125 | /// Subtraction |
| 126 | template <typename Distance> |
| 127 | __host__ __device__ CUMAT_STRONG_INLINE self_type operator-(Distance n) const |
| 128 | { |
| 129 | self_type retval = *this; |
| 130 | retval.index_ -= n; |
| 131 | return retval; |
| 132 | } |
| 133 | |
| 134 | /// Subtraction assignment |
| 135 | template <typename Distance> |
nothing calls this directly
no outgoing calls
no test coverage detected