stdlib: Improve character API.

The patch adds methods for surrogate characters processing and Unicode
category support needed for regular expression library.
This commit is contained in:
Ilya Matveev
2017-06-08 14:04:23 +07:00
committed by ilmat192
parent 96e807697a
commit e64a5f42f0
11 changed files with 385 additions and 10 deletions
@@ -1,6 +1,6 @@
fun main(args : Array<String>) {
val hello = "Hello"
val array = toCharArray(hello)
val array = hello.toCharArray()
for (ch in array) {
print(ch)
print(" ")