is_ascii_chars

Function is_ascii_chars 

Source
pub open spec fn is_ascii_chars(chars: Seq<char>) -> bool
Expand description
{ forall |i| 0 <= i < chars.len() ==> '\0' <= #[trigger] chars[i] <= '\u{7f}' }

True when the given character sequence only contains ASCII characters.