Skip to main content

is_numeric_string_char

Function is_numeric_string_char 

Source
pub open spec fn is_numeric_string_char(c: char) -> bool
Expand description
{ c as u32 == 0x20 || (0x30 <= c as u32 && c as u32 <= 0x39) }