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

@ -1563,7 +1563,7 @@ fn low_level_no_rc(lowlevel: &LowLevel) -> RC {
StrTrim => RC::Rc,
StrTrimStart => RC::Rc,
StrTrimEnd => RC::Rc,
StrSplit => RC::NoRc,
StrSplitOn => RC::NoRc,
StrToNum => RC::NoRc,
ListPrepend => RC::Rc,
StrJoinWith => RC::NoRc,

View file

@ -1274,7 +1274,7 @@ pub(crate) fn lowlevel_borrow_signature(op: LowLevel) -> &'static [Ownership] {
StrTrim => &[OWNED],
StrTrimStart => &[OWNED],
StrTrimEnd => &[OWNED],
StrSplit => &[BORROWED, BORROWED],
StrSplitOn => &[BORROWED, BORROWED],
StrToNum => &[BORROWED],
ListPrepend => &[OWNED, OWNED],
StrJoinWith => &[BORROWED, BORROWED],