Function std::path::is_separator

1.0.0 · source ·
pub fn is_separator(c: char) -> bool
Expand description

确定字符是否为当前平台允许的路径分隔符之一。

Examples

use std::path;

assert!(path::is_separator('/')); // '/' 适用于 Unix 和 Windows
assert!(!path::is_separator('❤'));
Run