| 37 | |
| 38 | template<class View> |
| 39 | forceinline RelTest |
| 40 | rtest_eq(View x, View y) { |
| 41 | if ((x.min() > y.max()) || (x.max() < y.min())) return RT_FALSE; |
| 42 | return (x.assigned() && y.assigned()) ? RT_TRUE : RT_MAYBE; |
| 43 | } |
| 44 | |
| 45 | template<class View> |
| 46 | forceinline RelTest |