]> git.lizzy.rs Git - rust.git/history - library/core/src/num/saturating.rs
Simplify Div impl for Saturating by using saturating_div
[rust.git] / library / core / src / num / saturating.rs
2021-08-19 Michael WatzkoSimplify Div impl for Saturating by using saturating_div
2021-08-19 Michael WatzkoAdd and use saturating_div instead of impl inside Satur...
2021-08-19 Michael WatzkoSaturate negative division
2021-08-12 Michael WatzkoImplement Neg only for signed Saturating types
2021-08-12 Michael WatzkoAdd naive remainder impl to Saturating
2021-08-12 Michael WatzkoAdd naive shift implementation to Saturating
2021-08-12 Michael WatzkoReplace doc test with doc macro call
2021-08-12 Michael WatzkoLike in Wrapping use shift in doctest
2021-08-12 Michael WatzkoRemove mentioning of modular arithmetic
2021-08-12 Michael WatzkoMake all the impls for Staturating unstable saturating_...
2021-08-10 Michael WatzkoFix missed tests
2021-08-10 Michael WatzkoRustfmt
2021-08-10 Michael WatzkoRemove unused macros
2021-08-10 Michael WatzkoAdd Saturating type (based on Wrapping type)