Class Char8
Value
Object
Depending on context, represents either a Unicode codepoint in the range 0 to 255 or a single byte of a UTF-8 encoded string. For ASCII characters (0 to 127), there is no difference between the two interpretations.
A single-codepoint string literal whose single codepoint fits into a Char8 (that is, Unicode
codepoints 0 to 255) may be used wherever a Char8 is expected. That is, it is legal to write:
def c:Char8 := "A"
- Source Code:
- View Source
Class Method Summary
-- multiply operator --* (count :,Int char :):Char8 String - Returns a string consisting of
countcopies of the given character.
Initializer Summary
Field Summary
isWhitespace :Bit -
trueif this character is whitespace. isDigit :Bit -
trueif this character is a numeric digit. asChar16 :Char16 - This character converted to a
Char16. asChar32 :Char32 - This character converted to a
Char32. asInt8 :Int8 - This character's codepoint converted to an 8 bit signed number.
asInt16 :Int16 - This character's codepoint converted to a 16 bit signed number.
asInt32 :Int32 - This character's codepoint converted to a 32 bit signed number.
asInt64 :Int64 - This character's codepoint converted to a 64 bit signed number.
asInt :Int - This character's codepoint converted to an
Int. asUInt8 :UInt8 - This character's codepoint converted to an 8 bit unsigned number.
asUInt16 :UInt16 - This character's codepoint converted to a 16 bit unsigned number.
asUInt32 :UInt32 - This character's codepoint converted to a 32 bit unsigned number.
asUInt64 :UInt64 - This character's codepoint converted to a 64 bit unsigned number.
asUInt :UInt - This character's codepoint converted to a
UInt. toChar16 :Char16 - This character converted to a
Char32. toChar32 :Char32 - This character converted to a
Char32. toInt8 :Int8 - This character's codepoint converted to an 8 bit signed number.
toInt16 :Int16 - This character's codepoint converted to a 16 bit signed number.
toInt32 :Int32 - This character's codepoint converted to a 32 bit signed number.
toInt64 :Int64 - This character's codepoint converted to a 64 bit signed number.
toInt :Int - This character's codepoint converted to an
Int. toUInt8 :UInt8 - This character's codepoint converted to an 8 bit unsigned number.
toUInt16 :UInt16 - This character's codepoint converted to a 16 bit unsigned number.
toUInt32 :UInt32 - This character's codepoint converted to a 32 bit unsigned number.
toUInt64 :UInt64 - This character's codepoint converted to a 64 bit unsigned number.
toUInt :UInt - This character's codepoint converted to a
UInt.
Instance Method Summary
-- subtract operator --- (other :):Char8 UInt8 - Returns the difference between the codepoints of two
Char8s. -- subtract operator --- (other :):Char8 Int - Returns the difference between the codepoints of two
Char8s. -- equals operator --= (other :):Char8 Bit - Returns
trueif these objects are equal. -- not equal operator --!= (other :):Char8 Bit - Returns
trueif these objects are not equal. -- less than operator --< (other :):Char8 Bit -- greater than operator --> (other :):Char8 Bit -- less than or equal operator --<= (other :):Char8 Bit -- greater than or equal operator -->= (other :):Char8 Bit -- multiply operator --* (count :):Int String - Returns a string consisting of
countcopies of this character.
Initializers
Creates a Char16 with the specified codepoint.
- Parameters:
-
- value of typevalue UInt8
Fields
true if this character is whitespace.
true if this character is a numeric digit.
This character converted to a Char16.
This character converted to a Char32.
This character's codepoint converted to an 8 bit signed number. If this number is not in the range of an 8 bit signed number, a safety violation occurs.
This character's codepoint converted to a 16 bit signed number.
This character's codepoint converted to a 32 bit signed number.
This character's codepoint converted to a 64 bit signed number.
This character's codepoint converted to an Int.
This character's codepoint converted to an 8 bit unsigned number.
This character's codepoint converted to a 16 bit unsigned number.
This character's codepoint converted to a 32 bit unsigned number.
This character's codepoint converted to a 64 bit unsigned number.
This character's codepoint converted to a UInt.
This character converted to a Char32.
This character converted to a Char32.
This character's codepoint converted to an 8 bit signed number. If the character's codepoint does not fit into an 8 bit signed number, it will silently overflow.
This character's codepoint converted to a 16 bit signed number.
This character's codepoint converted to a 32 bit signed number.
This character's codepoint converted to a 64 bit signed number.
This character's codepoint converted to an Int.
This character's codepoint converted to an 8 bit unsigned number.
This character's codepoint converted to a 16 bit unsigned number.
This character's codepoint converted to a 32 bit unsigned number.
This character's codepoint converted to a 64 bit unsigned number.
This character's codepoint converted to a UInt.
Class Methods
Instance Methods
Returns the difference between the codepoints of two Char8s.
- Parameters:
-
- value of typeother Char8
Returns the difference between the codepoints of two Char8s.
- Parameters:
-
- value of typeother Char8
Returns true if these objects are equal.
- Parameters:
-
- value of typeother Char8
- Overrides:
- frost.core.Equatable.=
Returns true if these objects are not equal.
- Parameters:
-
- value of typeother Char8
- Overrides:
- frost.core.Equatable.!=
- Parameters:
-
- value of typeother Char8
- Parameters:
-
- value of typeother Char8
- Parameters:
-
- value of typeother Char8
- Parameters:
-
- value of typeother Char8