We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OrderedFloat only implement these ops now:
OrderedFloat
impl_ordered_float_binop! {Add, add, AddAssign, add_assign} impl_ordered_float_binop! {Sub, sub, SubAssign, sub_assign} impl_ordered_float_binop! {Mul, mul, MulAssign, mul_assign} impl_ordered_float_binop! {Div, div, DivAssign, div_assign} impl_ordered_float_binop! {Rem, rem, RemAssign, rem_assign}
It's useful to support num_traits::ops::checked::{CheckedAdd, CheckedSub, ...}.
num_traits::ops::checked::{CheckedAdd, CheckedSub, ...}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OrderedFloat
only implement these ops now:It's useful to support
num_traits::ops::checked::{CheckedAdd, CheckedSub, ...}
.The text was updated successfully, but these errors were encountered: