pub proof fn lemma_decimal_scan_characterizes(
bytes: Seq<u8>,
start: int,
scanned: int,
)Expand description
requires
start == decimal_mantissa_start(bytes),0 <= start <= scanned <= bytes.len(),ascii_digits(bytes, start, scanned),scanned == bytes.len() || !ascii_digit(bytes[scanned]),ensuresder_real_decimal_wf(bytes) <==> der_real_decimal_at(bytes, scanned),