Open LucaCiucci opened 1 year ago
I for one would love that as it would enable quite a bit of use cases for non-copyable types. 👍
Yeah, I think this would be really useful for working with automatic differentiation or arbitrary precision types. AFAIK currently the only way to use rust-num with these types is using a [patch]
, but this is not feasible in many scenarios where you would have to patch many crates to make things work.
This was requested in #245. I just removed the
Copy
bound from theReal
and replaced withClone
inFloat
. This would be a breaking change.