! tests if box is empty */
| 41 | |
| 42 | /*! tests if box is empty */ |
| 43 | __forceinline bool empty() const { for (int i=0; i<T::N; i++) if (lower[i] > upper[i]) return true; return false; } |
| 44 | |
| 45 | /*! computes the size of the box */ |
| 46 | __forceinline T size() const { return upper - lower; } |
nothing calls this directly
no outgoing calls
no test coverage detected