pub fn is_separator(c: char) -> bool
Determines whether the character is the permitted path separator for Unix, /.
/
assert!(unix_path::is_separator('/')); assert!(!unix_path::is_separator('❤'));