Unicode.unicharIsgraph

Determines whether a character is printable and not a space (returns %FALSE for control characters, format characters, and spaces). g_unichar_isprint() is similar, but returns %TRUE for spaces. Given some UTF-8 text, obtain a character value with g_utf8_get_char().

struct Unicode
static
bool
unicharIsgraph
(
dchar c
)

Parameters

c dchar

a Unicode character

Return Value

Type: bool

%TRUE if @c is printable unless it's a space

Meta