pub open spec fn signed_crop(x: int) -> i32Expand 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
}
}