Skip to main content

integer_fmt

Function integer_fmt 

Source
pub open spec fn integer_fmt() -> IntegerInnerFmt
Expand description
{
    Mapped {
        inner: Refined(Tail, |bytes: Seq<u8>| integer_bytes_wf(bytes)),
        mapper: (|bytes: Seq<u8>| int_from_be_bytes(bytes), |o: int| int_to_be_bytes(o)),
    }
}