Jacob Zhong

Results 117 comments of Jacob Zhong

python不限平台吧,配好环境在mac也能用

Some crates that are related but not yet in the plan to support: - `rust_decimal` - `half`

The support for PyO3 will be postponed, as PyO3 is being actively refactored.

Thanks for the PR! What necessitates this change in your opinion? I think the original author of the memory allocation utilities (i.e tczajka) keeps this design because it will be...

This change might be related to #43 , lets wait for that issue to have a rough idea of how to improve this.

Thanks for raising this up. I will think about adding the NaN cases to the documentation (as I'm writing a guide to be published with the release v0.4). Currently as...

Well the underflowing/overflowing cases are indeed hard to catch them all beforehand, I'm open to provide a fallible API for this case. My main concern is to add `unwrap` for...

My favorite over the three is the last one, and when implemented as methods of `FBig`, the unusual output should be converted to corresponding value or panic: overflow -> inf,...

Regarding nan/inf, I don't plan to support them as input. Operations on nan/inf are mathematically ill-defined, and they exists in programming because the precision is limited in computers. In my...

> Do you think this might result in more work for you, as a maintainer, because it would double the number of public APIs to document/maintain? Making the ops associated...