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
Is your feature request related to a problem? Please describe.
No problems, just wanna my code more clean.
Describe the solution you'd like
I wanna sth like this for almost all units. public static double operator * (Length, ReciprocalLength) public static double operator * (ReciprocalLength, Length) public static ReciprocalLength operator / (double, Length)
Describe alternatives you've considered double result = Length / ReciprocalLength.Inverse()
Just looks not good for reading. Emmmm.