char
Object Hierarchy:
Description:
[
SimpleType ]
public struct char
Corresponds to the standard C char type.
Package: glib-2.0
Content:
Static methods:
Methods:
-
public string to_string (string format = "%c")
-
public bool isalnum ()
Determines whether a character is alphanumeric.
-
public bool isalpha ()
Determines whether a character is alphabetic (i.e. a letter).
-
public bool iscntrl ()
Determines whether a character is a control character.
-
public bool isdigit ()
Determines whether a character is digit (0-9).
-
public bool isgraph ()
Determines whether a character is a printing character and not a space.
-
public bool islower ()
Determines whether a character is an ASCII lower case letter.
-
public bool isprint ()
Determines whether a character is a printing character.
-
public bool ispunct ()
Determines whether a character is a punctuation character.
-
public bool isspace ()
Determines whether a character is a white-space character.
-
public bool isupper ()
Determines whether a character is an ASCII upper case letter.
-
public bool isxdigit ()
Determines whether a character is a hexadecimal-digit character.
-
public int digit_value ()
Determines the numeric value of a character as a decimal digit.
-
public int xdigit_value ()
Determines the numeric value of a character as a hexidecimal digit.
-
public char tolower ()
Convert a character to ASCII lower case.
-
public char toupper ()
Convert a character to ASCII upper case.
-
public char clamp (char low, char high)