signed_crop

Function signed_crop 

Source
pub open spec fn signed_crop(x: int) -> i32
Expand description
{
    if (x % (0x1_0000_0000 as int)) > (<i32>::MAX as int) {
        ((x % (0x1_0000_0000 as int)) - 0x1_0000_0000) as i32
    } else {
        (x % (0x1_0000_0000 as int)) as i32
    }
}