If we have a full slice along dimension "d".
| 101 | |
| 102 | // If we have a full slice along dimension "d". |
| 103 | bool IsFullAt(int d) const { |
| 104 | return lengths_[d] == kFullExtent && starts_[d] == 0; |
| 105 | } |
| 106 | |
| 107 | // If this is a full slice, i.e. IsFullAt(d) for every d. |
| 108 | bool IsFull() const; |
no outgoing calls
no test coverage detected