You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know about power and root function mentioned in #60
but are there any others?
I'm working on something, at least for my own personal use until we come up with an official solution. I haven't worked out all the details yet so won't go into them here.
The text was updated successfully, but these errors were encountered:
Here is the num trait which declares the Float contract: https://docs.rs/num/latest/num/trait.Float.html
We don't keep a list, but if you add impl Float for GenericFraction in your local codebase, rustc should give you the list of all missing methods.
GenericFraction doesn't impl NumCast which is a requirement for Float
You have to wrap them in the Float trait so it just lists the mall not only the missing ones.
I know about power and root function mentioned in #60
but are there any others?
I'm working on something, at least for my own personal use until we come up with an official solution. I haven't worked out all the details yet so won't go into them here.
The text was updated successfully, but these errors were encountered: