We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0e329a commit 93a991bCopy full SHA for 93a991b
src/lib.rs
@@ -257,7 +257,6 @@ pub trait Integer: Sized + Num + PartialOrd + Ord + Eq {
257
/// assert_eq!((-1).div_rem( &2), ( 0, -1));
258
/// assert_eq!((-1).div_rem(&-2), ( 0, -1));
259
/// ~~~
260
- #[inline]
261
fn div_rem(&self, other: &Self) -> (Self, Self);
262
263
/// Simultaneous floored integer division and modulus.
0 commit comments