(&self)
| 298 | } |
| 299 | |
| 300 | fn is_zero(&self) -> bool { |
| 301 | self.low == Bound::Int(Integer::from(0)) && self.high == Bound::Int(Integer::from(0)) |
| 302 | } |
| 303 | |
| 304 | fn all_ones(&self) -> bool { |
| 305 | self.low == Bound::Int(Integer::from(-1)) && self.high == Bound::Int(Integer::from(-1)) |