This commit is contained in:
Andreas Liljeqvist 2021-09-08 13:24:23 +02:00
parent 9095cf9905
commit a2ee1420b8

View file

@ -792,7 +792,7 @@ impl WrappingRange {
pub fn is_full_for(&self, size: Size) -> bool {
let max_value = size.unsigned_int_max();
debug_assert!(self.start <= max_value && self.end <= max_value);
(self.start == 0 && self.end == max_value) || (self.end + 1 == self.start)
(self.start == 0 && self.end == max_value) || (self.end.wrapping_add(1) == self.start)
}
}