VERY basic UTF8 parser

This commit is contained in:
udo
2022-01-28 20:23:14 +00:00
parent 939009f9a1
commit 18ca2368bc
9 changed files with 350 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
:sig
StringList split_utf8(String str)
:params
str : string to be split
return value : a list of Unicode characters
:desc
Splits the string 'str' into its constituent Unicode code points.
This currently does not honor compound characters such as flags or composite emojis.
:see
>string