mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
adds Num.subChecked
This commit is contained in:
parent
5d2abc2bd2
commit
fe588c120c
8 changed files with 210 additions and 15 deletions
|
@ -32,6 +32,7 @@ pub enum LowLevel {
|
|||
NumAddChecked,
|
||||
NumSub,
|
||||
NumSubWrap,
|
||||
NumSubChecked,
|
||||
NumMul,
|
||||
NumGt,
|
||||
NumGte,
|
||||
|
|
|
@ -799,6 +799,7 @@ define_builtins! {
|
|||
56 NUM_ASIN: "asin"
|
||||
57 NUM_BITWISE_AND: "bitwiseAnd"
|
||||
58 NUM_SUB_WRAP: "subWrap"
|
||||
59 NUM_SUB_CHECKED: "subChecked"
|
||||
}
|
||||
2 BOOL: "Bool" => {
|
||||
0 BOOL_BOOL: "Bool" imported // the Bool.Bool type alias
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue