Function is_whitespace

Source
fn is_whitespace(c: char) -> bool
Expand description

True if c is considered a whitespace according to Rust language definition. See Rust language reference for definitions of these classes.

See rust-lang/rust’s compiler/rustc_lexer/src/lib.rs is_whitespace