Merge pull request #6791 from shua/concatutf8

builtin: List.concatUtf8 : List U8, Str -> Str
This commit is contained in:
Anton-4 2024-06-11 16:21:30 +02:00 committed by GitHub
commit da95b6d28b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
62 changed files with 2035 additions and 1932 deletions

View file

@ -47,6 +47,7 @@ pub enum LowLevel {
ListGetCapacity,
ListIsUnique,
ListClone,
ListConcatUtf8,
NumAdd,
NumAddWrap,
NumAddChecked,
@ -290,6 +291,7 @@ map_symbol_to_lowlevel! {
ListSublist <= LIST_SUBLIST_LOWLEVEL;
ListDropAt <= LIST_DROP_AT;
ListSwap <= LIST_SWAP;
ListConcatUtf8 <= LIST_CONCAT_UTF8;
NumAdd <= NUM_ADD;
NumAddWrap <= NUM_ADD_WRAP;
NumAddChecked <= NUM_ADD_CHECKED_LOWLEVEL;

View file

@ -1538,6 +1538,7 @@ define_builtins! {
86 LIST_WALK_WITH_INDEX_UNTIL: "walkWithIndexUntil"
87 LIST_CLONE: "clone"
88 LIST_LEN_USIZE: "lenUsize"
89 LIST_CONCAT_UTF8: "concatUtf8"
}
7 RESULT: "Result" => {
0 RESULT_RESULT: "Result" exposed_type=true // the Result.Result type alias