| 192 | } |
| 193 | |
| 194 | bool HasWindowReversal(const Window& window) { |
| 195 | for (const auto& dim : window.dimensions()) { |
| 196 | if (dim.window_reversal()) { |
| 197 | return true; |
| 198 | } |
| 199 | } |
| 200 | return false; |
| 201 | } |
| 202 | |
| 203 | bool AllOrNoneReversed(const Window& window) { |
| 204 | if (window.dimensions().empty()) { |
no test coverage detected