[WASM] Add std text implementations

This commit is contained in:
Igor Yakovlev
2021-11-08 18:43:18 +01:00
committed by TeamCityServer
parent 1b4f519701
commit 9408499da9
27 changed files with 1714 additions and 169 deletions
@@ -141,6 +141,21 @@ public class Char private constructor(public val value: Char) : Comparable<Char>
*/
public const val MAX_SURROGATE: Char = MAX_LOW_SURROGATE
/**
* The minimum value of a supplementary code point, `\u0x10000`.
*/
public const val MIN_SUPPLEMENTARY_CODE_POINT: Int = 0x10000
/**
* The minimum radix available for conversion to and from strings.
*/
public const val MIN_RADIX: Int = 2
/**
* The maximum radix available for conversion to and from strings.
*/
public const val MAX_RADIX: Int = 36
/**
* The number of bytes used to represent a Char in a binary form.
*/