Determines if the given integer is a valid Unicode scalar value.
Note that values in [0xd800, 0xdfff]
are reserved for UTF-16 surrogate pairs.
Equations
- a.instDecidableLt b = a.val.decLt b.val
Equations
- a.instDecidableLe b = a.val.decLe b.val
True for natural numbers that are valid Unicode scalar values.
Converts an 8-bit unsigned integer into a character.
The integer's value is interpreted as a Unicode code point.
Equations
- Char.ofUInt8 n = { val := n.toUInt32, valid := ⋯ }
Returns true
if the character is a space (' ', U+0020)
, a tab ('\t', U+0009)
, a carriage
return ('\r', U+000D)
, or a newline ('\n', U+000A)
.
Returns true
if the character is an ASCII letter or digit.
The ASCII letters are the following: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
.
The ASCII digits are the following: 0123456789
.
Equations
- c.isAlphanum = (c.isAlpha || c.isDigit)
Converts an uppercase ASCII letter to the corresponding lowercase letter. Letters outside the ASCII alphabet are returned unchanged.
The uppercase ASCII letters are the following: ABCDEFGHIJKLMNOPQRSTUVWXYZ
.
Converts a lowercase ASCII letter to the corresponding uppercase letter. Letters outside the ASCII alphabet are returned unchanged.
The lowercase ASCII letters are the following: abcdefghijklmnopqrstuvwxyz
.