Skip to main content

i64_le_fmt

Function i64_le_fmt 

Source
pub open spec fn i64_le_fmt() -> I64LeFmt
Expand description
{
    Mapped {
        inner: Fixed::<8>,
        mapper: (
            |i: Seq<u8>| i64_le_from_bytes(array_from_seq(i)),
            |o: i64| i64_le_to_bytes(o)@,
        ),
    }
}