Mojo module
Implements the core String type and related utilities.
Structs
-
String: Represents a mutable string.
Functions
-
ascii: Get the ASCII representation of the object. -
atof: Parses the given string as a floating point and returns that value. -
atol: Parses and returns the given string as an integer in the given base. -
chr: Returns a String based on the given Unicode code point. This is the inverse of theord()function. -
ord: Returns an integer that represents the codepoint of a single-character string.