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

@ -10,7 +10,7 @@ pub enum LowLevel {
StrIsEmpty,
StrStartsWith,
StrEndsWith,
StrSplit,
StrSplitOn,
StrCountUtf8Bytes,
StrFromInt,
StrFromUtf8,
@ -253,7 +253,7 @@ map_symbol_to_lowlevel! {
StrIsEmpty <= STR_IS_EMPTY;
StrStartsWith <= STR_STARTS_WITH;
StrEndsWith <= STR_ENDS_WITH;
StrSplit <= STR_SPLIT;
StrSplitOn <= STR_SPLIT_ON;
StrCountUtf8Bytes <= STR_COUNT_UTF8_BYTES;
StrFromUtf8 <= STR_FROM_UTF8_LOWLEVEL;
StrToUtf8 <= STR_TO_UTF8;