You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gobang/src/components/utils/mod.rs

11 lines
178 B
Rust

pub mod input;
pub mod scroll_vertical;
pub fn is_whitespace(c: char) -> bool {
c.is_whitespace()
}
pub fn is_nonalphanumeric(c: char) -> bool {
!c.is_alphanumeric()
}