mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
Ops for sqrt and round
This commit is contained in:
parent
9f8c48118f
commit
1c98248b91
6 changed files with 221 additions and 163 deletions
|
@ -5,7 +5,8 @@
|
|||
pub enum LowLevel {
|
||||
ListLen,
|
||||
ListGetUnsafe,
|
||||
ListSetUnsafe,
|
||||
ListSet,
|
||||
ListSetInPlace,
|
||||
ListIsEmpty,
|
||||
NumAdd,
|
||||
NumSub,
|
||||
|
@ -14,12 +15,14 @@ pub enum LowLevel {
|
|||
NumGte,
|
||||
NumLt,
|
||||
NumLte,
|
||||
NumDivUnsafe,
|
||||
NumRemUnsafe,
|
||||
NumDivUnchecked,
|
||||
NumRemUnchecked,
|
||||
NumAbs,
|
||||
NumNeg,
|
||||
NumSin,
|
||||
NumCos,
|
||||
NumSqrt,
|
||||
NumRound,
|
||||
Eq,
|
||||
NotEq,
|
||||
And,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue