Move some Num operations into LowLevel

This commit is contained in:
Richard Feldman 2020-06-21 15:07:32 -04:00
parent 7c98e2e9f8
commit 187f3f8dc5
6 changed files with 159 additions and 259 deletions

View file

@ -6,6 +6,13 @@ pub enum LowLevel {
ListLen,
ListGetUnsafe,
ListSetUnsafe,
NumAdd,
NumSub,
NumMul,
NumGt,
NumGte,
NumLt,
NumLte,
Eq,
NotEq,
And,