mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-31 09:07:21 +00:00
Merge pull request #6791 from shua/concatutf8
builtin: List.concatUtf8 : List U8, Str -> Str
This commit is contained in:
commit
da95b6d28b
62 changed files with 2035 additions and 1932 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue