Home | History | Annotate | Download | only in unicode

Lines Matching full:character

9 	pC     = 1 << iota // a control character.
10 pP // a punctuation character.
12 pS // a symbolic character.
13 pZ // a spacing character.
16 pp // a printable character according to Go's definition.
17 pg = pp | pZ // a graphical character according to the Unicode definition.
47 // ASCII space character, from categories L, M, N, P, S and the ASCII space
48 // character. This categorization is the same as IsGraphic except that the
49 // only spacing character is ASCII space, U+0020.
78 // IsControl reports whether the rune is a control character.
97 // IsMark reports whether the rune is a mark character (category M).
111 // IsPunct reports whether the rune is a Unicode punctuation character
120 // IsSpace reports whether the rune is a space character as defined
138 // IsSymbol reports whether the rune is a symbolic character.