Function isAscii [src]
Returns whether the character is a 7-bit ASCII character.
Prototype
pub fn isAscii(c: u8) bool
Parameters
c: u8
Source
pub fn isAscii(c: u8) bool {
return c < 128;
}
pub fn isAscii(c: u8) bool
c: u8
pub fn isAscii(c: u8) bool {
return c < 128;
}