1 2 3 4 5 6 7 8
pub(crate) fn printableStringConstant(str: &[u8]) -> bool { for &b in str { if b < b' ' { return false; } } true }