wrapping_add_unsigned

Function wrapping_add_unsigned 

Source
pub open spec fn wrapping_add_unsigned(x: i8, y: u8) -> i8
Expand description
{ if x + y > <i8>::MAX { (x + y - 0x100) as i8 } else { (x + y) as i8 } }