mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
implement isMultipleOf builtin
This commit is contained in:
parent
618dea11e6
commit
1e9bd0d7f1
7 changed files with 74 additions and 6 deletions
|
@ -65,6 +65,7 @@ pub enum LowLevel {
|
|||
NumCompare,
|
||||
NumDivUnchecked,
|
||||
NumRemUnchecked,
|
||||
NumIsMultipleOf,
|
||||
NumAbs,
|
||||
NumNeg,
|
||||
NumSin,
|
||||
|
|
|
@ -856,6 +856,7 @@ define_builtins! {
|
|||
95 NUM_NAT: "Nat" imported
|
||||
96 NUM_INT_CAST: "intCast"
|
||||
97 NUM_MAX_I128: "maxI128"
|
||||
98 NUM_IS_MULTIPLE_OF: "isMultipleOf"
|
||||
|
||||
}
|
||||
2 BOOL: "Bool" => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue