Skip to main content

i32_be_fmt

Function i32_be_fmt 

Source
pub open spec fn i32_be_fmt() -> I32BeFmt
Expand description
{
    Mapped {
        inner: Fixed::<4>,
        mapper: (
            |i: Seq<u8>| i32_be_from_bytes(array_from_seq(i)),
            |o: i32| i32_be_to_bytes(o)@,
        ),
    }
}