diff options
Diffstat (limited to 'lib/math/exp-impl.myr')
-rw-r--r-- | lib/math/exp-impl.myr | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/math/exp-impl.myr b/lib/math/exp-impl.myr index 862ff68..26b8639 100644 --- a/lib/math/exp-impl.myr +++ b/lib/math/exp-impl.myr @@ -288,7 +288,11 @@ const expm164 = {f : flt64 -> expm1gen(f, desc64) } -generic expm1gen = {f : @f, d : fltdesc(@f, @u, @i) :: numeric,floating,std.equatable @f, numeric,integral @u, numeric,integral @i, roundable @f -> @i +generic expm1gen = {f : @f, d : fltdesc(@f, @u, @i) :: \ + numeric,floating,std.equatable @f, + numeric,integral @u, + numeric,integral @i, + roundable @f -> @i var b = d.tobits(f) var n, e, s (n, e, s) = d.explode(f) |