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 manually inspected the implementation of converting Decimal to f64 and found that it can never return None. Do I have this right?
If so, would you be able to provide an infallible method directly on Decimal to make this conversion? Right now I have a bunch of f64::try_from(value).expect("infallible by manual inspection") which makes it very difficult to maintain a no-panic codebase.