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; }