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.
2 parents 7a8397f + 172b0e3 commit d839ba5Copy full SHA for d839ba5
src/lib.rs
@@ -187,14 +187,12 @@ pub trait Integer: Sized + Num + PartialOrd + Ord + Eq {
187
gcd: r.1,
188
x: s.1,
189
y: t.1,
190
- _hidden: (),
191
}
192
} else {
193
ExtendedGcd {
194
gcd: Self::zero() - r.1,
195
x: Self::zero() - s.1,
196
y: Self::zero() - t.1,
197
198
199
200
@@ -356,7 +354,6 @@ pub struct ExtendedGcd<A> {
356
354
pub gcd: A,
357
355
pub x: A,
358
pub y: A,
359
360
361
362
/// Simultaneous integer division and modulus
0 commit comments