Std.Char

import Std.Char

Source


Functions


is_ascii

is_ascii (c: Char): Bool

source


is_digit

is_digit (c: Char): Bool

source


is_alpha

is_alpha (c: Char): Bool

source


is_alphanumeric

is_alphanumeric (c: Char): Bool

source


is_whitespace

is_whitespace (c: Char): Bool

source


to_ascii_lower

to_ascii_lower (c: Char): Char

source


to_ascii_upper

to_ascii_upper (c: Char): Char

source


to_digit

to_digit (c: Char): Maybe U8

If this char is a digit in base 10, return the digit as an integer.

source