Skip to main content

i64_be_fmt

Function i64_be_fmt 

Source
pub open spec fn i64_be_fmt() -> I64BeFmt
Expand description
{
    Mapped {
        inner: Fixed::<8>,
        mapper: (
            |i: Seq<u8>| i64_be_from_bytes(array_from_seq(i)),
            |o: i64| i64_be_to_bytes(o)@,
        ),
    }
}