Tony-Samuels
Tony-Samuels
It matches the behaviour of the standard library in similar situations, but it's easy enough to do so I see no reason not to.
Definitely can't do `i`. You'll need a complex numbers library for that. The rest are doable although they can be converted from any other source with constants as floats or...
Is this behaviour causing an issue?
Our `PartialEq` implementation ignores the scaling for a reason. The scale does not indicate the maximum number of significant figures in your calculation chain, just for the current value. This...
Previous implementations were returning `None` under edge cases that have since been handled. I'm not seeing any reason would couldn't have `From` implementations now.
I suspect this could fit nicely into the 2.0 branch.
Maybe I'm misunderstanding the proposal, but `to_str_internal` is used inside our implementation of `std::fmt::Display`, so wouldn't `write!` or similar work here?
So it looks like the purpose of this function is to give the first guess at to where to attribute a panic to when not printing a full callstack. https://doc.rust-lang.org/reference/attributes/codegen.html#examples...
This looks like an issue in serde_json::Value's deserialization here. To send arbitrary precision numbers it would have to be sent as the special arbitrary precision map. However, I imagine that...
This looks like a sensible change for v2. Are you planning to continue with it from here, if I enable the CI for validation, or are you looking to hand...