mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
rename Str.split
This commit is contained in:
parent
d0735f2661
commit
d99c347998
66 changed files with 1560 additions and 1560 deletions
|
@ -471,8 +471,8 @@ pub(crate) fn run_low_level<'a, 'ctx>(
|
|||
bitcode::STR_REPEAT,
|
||||
)
|
||||
}
|
||||
StrSplit => {
|
||||
// Str.split : Str, Str -> List Str
|
||||
StrSplitOn => {
|
||||
// Str.splitOn : Str, Str -> List Str
|
||||
arguments!(string, delimiter);
|
||||
|
||||
call_str_bitcode_fn(
|
||||
|
@ -480,7 +480,7 @@ pub(crate) fn run_low_level<'a, 'ctx>(
|
|||
&[string, delimiter],
|
||||
&[],
|
||||
BitcodeReturns::List,
|
||||
bitcode::STR_SPLIT,
|
||||
bitcode::STR_SPLIT_ON,
|
||||
)
|
||||
}
|
||||
StrIsEmpty => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue