mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
cargo fmt
This commit is contained in:
parent
1653b5af9b
commit
f077f948b6
1 changed files with 16 additions and 85 deletions
|
@ -109,91 +109,22 @@ impl LowLevel {
|
||||||
use LowLevel::*;
|
use LowLevel::*;
|
||||||
|
|
||||||
match self {
|
match self {
|
||||||
StrConcat
|
StrConcat | StrJoinWith | StrIsEmpty | StrStartsWith | StrStartsWithCodePt
|
||||||
| StrJoinWith
|
| StrEndsWith | StrSplit | StrCountGraphemes | StrFromInt | StrFromUtf8
|
||||||
| StrIsEmpty
|
| StrToBytes | StrFromFloat | ListLen | ListGetUnsafe | ListSet | ListDrop
|
||||||
| StrStartsWith
|
| ListSingle | ListRepeat | ListReverse | ListConcat | ListContains | ListAppend
|
||||||
| StrStartsWithCodePt
|
| ListPrepend | ListJoin | ListRange | ListSwap | DictSize | DictEmpty | DictInsert
|
||||||
| StrEndsWith
|
| DictRemove | DictContains | DictGetUnsafe | DictKeys | DictValues | DictUnion
|
||||||
| StrSplit
|
| DictIntersection | DictDifference | SetFromList | NumAdd | NumAddWrap
|
||||||
| StrCountGraphemes
|
| NumAddChecked | NumSub | NumSubWrap | NumSubChecked | NumMul | NumMulWrap
|
||||||
| StrFromInt
|
| NumMulChecked | NumGt | NumGte | NumLt | NumLte | NumCompare | NumDivUnchecked
|
||||||
| StrFromUtf8
|
| NumRemUnchecked | NumIsMultipleOf | NumAbs | NumNeg | NumSin | NumCos
|
||||||
| StrToBytes
|
| NumSqrtUnchecked | NumLogUnchecked | NumRound | NumToFloat | NumPow | NumCeiling
|
||||||
| StrFromFloat
|
| NumPowInt | NumFloor | NumIsFinite | NumAtan | NumAcos | NumAsin | NumBitwiseAnd
|
||||||
| ListLen
|
| NumBitwiseXor | NumBitwiseOr | NumShiftLeftBy | NumShiftRightBy
|
||||||
| ListGetUnsafe
|
| NumShiftRightZfBy | NumIntCast | Eq | NotEq | And | Or | Not | Hash | ExpectTrue => {
|
||||||
| ListSet
|
false
|
||||||
| 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
|
|
||||||
| NumRemUnchecked
|
|
||||||
| NumIsMultipleOf
|
|
||||||
| NumAbs
|
|
||||||
| NumNeg
|
|
||||||
| NumSin
|
|
||||||
| NumCos
|
|
||||||
| NumSqrtUnchecked
|
|
||||||
| NumLogUnchecked
|
|
||||||
| NumRound
|
|
||||||
| NumToFloat
|
|
||||||
| NumPow
|
|
||||||
| NumCeiling
|
|
||||||
| NumPowInt
|
|
||||||
| NumFloor
|
|
||||||
| NumIsFinite
|
|
||||||
| NumAtan
|
|
||||||
| NumAcos
|
|
||||||
| NumAsin
|
|
||||||
| NumBitwiseAnd
|
|
||||||
| NumBitwiseXor
|
|
||||||
| NumBitwiseOr
|
|
||||||
| NumShiftLeftBy
|
|
||||||
| NumShiftRightBy
|
|
||||||
| NumShiftRightZfBy
|
|
||||||
| NumIntCast
|
|
||||||
| Eq
|
|
||||||
| NotEq
|
|
||||||
| And
|
|
||||||
| Or
|
|
||||||
| Not
|
|
||||||
| Hash
|
|
||||||
| ExpectTrue => false,
|
|
||||||
|
|
||||||
ListMap | ListMap2 | ListMap3 | ListMapWithIndex | ListKeepIf | ListWalk
|
ListMap | ListMap2 | ListMap3 | ListMapWithIndex | ListKeepIf | ListWalk
|
||||||
| ListWalkUntil | ListWalkBackwards | ListKeepOks | ListKeepErrs | ListSortWith
|
| ListWalkUntil | ListWalkBackwards | ListKeepOks | ListKeepErrs | ListSortWith
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue