Skip to main content

i16_be_fmt

Function i16_be_fmt 

Source
pub open spec fn i16_be_fmt() -> I16BeFmt
Expand description
{
    Mapped {
        inner: Fixed::<2>,
        mapper: (
            |i: Seq<u8>| i16_be_from_bytes(array_from_seq(i)),
            |o: i16| i16_be_to_bytes(o)@,
        ),
    }
}