alkis/decimal

`exp` causes infinite loop

Opened this issue · 0 comments

It seems like the exp() method causes an infinite loop no matter what you give it. Example:

use decimal::d128;
fn main() {
  d128!(10).exp(d128!(0));
}