It seems like the `exp()` method causes an infinite loop no matter what you give it. Example: ```rust use decimal::d128; fn main() { d128!(10).exp(d128!(0)); } ```
It seems like the
exp()method causes an infinite loop no matter what you give it. Example: