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
The num-traits crate has many math traits which are not yet implemented in this crate for points and vectors, such as
CheckedAdd: Add with overflow check (also all other checked operations)
Zero and One: Additive and multiplicative identity
I am personally missing the checked operations the most, for situations where I really don't want overflows to happen and want to propagate the error with ?.
Are those methods that would be in the scope of this crate?
The text was updated successfully, but these errors were encountered:
The
num-traits
crate has many math traits which are not yet implemented in this crate for points and vectors, such asCheckedAdd
: Add with overflow check (also all other checked operations)Zero
andOne
: Additive and multiplicative identityI am personally missing the checked operations the most, for situations where I really don't want overflows to happen and want to propagate the error with
?
.Are those methods that would be in the scope of this crate?
The text was updated successfully, but these errors were encountered: