Function isASCII [src]
Alias for std.ascii.isAscii
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;
}
Alias for std.ascii.isAscii
pub fn isAscii(c: u8) bool
c: u8
pub fn isAscii(c: u8) bool {
return c < 128;
}