| 170 | |
| 171 | template<class T, REQUIRES("T must be an arithmetic type", std::is_arithmetic<T> )> |
| 172 | bool equalTo(const T& x) const { |
| 173 | bool result = false; |
| 174 | visitValue(*this, std::bind(equalVisitor{}, std::ref(result), x, std::placeholders::_1)); |
| 175 | return result; |
| 176 | } |
| 177 | |
| 178 | void decreaseRange() { |
| 179 | if (bound == Bound::Lower) |
nothing calls this directly
no test coverage detected