| 101 | } |
| 102 | |
| 103 | template<class T, class Policies> inline |
| 104 | bool zero_in(const interval<T, Policies>& x) |
| 105 | { |
| 106 | if (interval_lib::detail::test_input(x)) return false; |
| 107 | return (!interval_lib::user::is_pos(x.lower())) && |
| 108 | (!interval_lib::user::is_neg(x.upper())); |
| 109 | } |
| 110 | |
| 111 | template<class T, class Policies> inline |
| 112 | bool in_zero(const interval<T, Policies>& x) // DEPRECATED |
no test coverage detected