Rename Str.toBytes to Str.toUtf8

This commit is contained in:
Richard Feldman 2021-08-07 21:57:48 -04:00
parent 23e11ca946
commit 2a616103c6
16 changed files with 33 additions and 33 deletions

View file

@ -13,7 +13,7 @@ pub enum LowLevel {
StrCountGraphemes,
StrFromInt,
StrFromUtf8,
StrToBytes,
StrToUtf8,
StrFromFloat,
ListLen,
ListGetUnsafe,
@ -110,11 +110,11 @@ impl LowLevel {
match self {
StrConcat | StrJoinWith | StrIsEmpty | StrStartsWith | StrStartsWithCodePt
| StrEndsWith | StrSplit | StrCountGraphemes | StrFromInt | StrFromUtf8
| StrToBytes | StrFromFloat | ListLen | ListGetUnsafe | ListSet | ListDrop
| ListSingle | ListRepeat | ListReverse | ListConcat | ListContains | ListAppend
| ListPrepend | ListJoin | ListRange | ListSwap | DictSize | DictEmpty | DictInsert
| DictRemove | DictContains | DictGetUnsafe | DictKeys | DictValues | DictUnion
| StrEndsWith | StrSplit | StrCountGraphemes | StrFromInt | StrFromUtf8 | StrToUtf8
| StrFromFloat | ListLen | ListGetUnsafe | ListSet | ListDrop | ListSingle
| ListRepeat | ListReverse | ListConcat | ListContains | ListAppend | ListPrepend
| ListJoin | ListRange | ListSwap | DictSize | DictEmpty | DictInsert | DictRemove
| DictContains | DictGetUnsafe | DictKeys | DictValues | DictUnion
| DictIntersection | DictDifference | SetFromList | NumAdd | NumAddWrap
| NumAddChecked | NumSub | NumSubWrap | NumSubChecked | NumMul | NumMulWrap
| NumMulChecked | NumGt | NumGte | NumLt | NumLte | NumCompare | NumDivUnchecked