Function isPrint [src]

Returns whether the character is printable and has some graphical representation, including the space character.

Prototype

pub fn isPrint(c: u8) bool

Parameters

c: u8

Source

pub fn isPrint(c: u8) bool { return isAscii(c) and !isControl(c); }