rename Str.split

This commit is contained in:
Isaac Van Doren 2024-11-15 20:42:49 -06:00
parent d0735f2661
commit d99c347998
No known key found for this signature in database
GPG key ID: CFA524CD470E5B94
66 changed files with 1560 additions and 1560 deletions

View file

@ -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 => {