add dec trig functions

This commit is contained in:
Brendan Hansknecht 2023-09-16 22:55:23 -07:00
parent 108d9a54e3
commit 346eb80bd1
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
4 changed files with 73 additions and 10 deletions

View file

@ -28,6 +28,12 @@ comptime {
exportDecFn(dec.neqC, "neq");
exportDecFn(dec.negateC, "negate");
exportDecFn(dec.divC, "div");
exportDecFn(dec.sinC, "sin");
exportDecFn(dec.cosC, "cos");
exportDecFn(dec.tanC, "tan");
exportDecFn(dec.asinC, "asin");
exportDecFn(dec.acosC, "acos");
exportDecFn(dec.atanC, "atan");
exportDecFn(dec.addC, "add_with_overflow");
exportDecFn(dec.addOrPanicC, "add_or_panic");