A short hand.
| 137 | bool Intersect(const TensorSlice& other, TensorSlice* result) const; |
| 138 | // A short hand. |
| 139 | bool Overlaps(const TensorSlice& other) const { |
| 140 | return Intersect(other, nullptr); |
| 141 | } |
| 142 | |
| 143 | // Equals iff "*this" and "other" are logically equivalent. |
| 144 | bool operator==(const TensorSlice& other) const; |