Get validity for each dimension.
| 140 | |
| 141 | // Get validity for each dimension. |
| 142 | std::array<bool, MAX_DIMENSIONS> dimensionValid() const { |
| 143 | return {boundValid(0), boundValid(1), boundValid(2), boundValid(3)}; |
| 144 | } |
| 145 | // Get emptiness for each dimension. |
| 146 | std::array<bool, MAX_DIMENSIONS> dimensionEmpty() const { |
| 147 | return {boundEmpty(0), boundEmpty(1), boundEmpty(2), boundEmpty(3)}; |