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 cedc326 commit 33eedbdCopy full SHA for 33eedbd
benches/bench.rs
@@ -38,7 +38,7 @@ impl Iterator for RandomKeys {
38
type Item = usize;
39
fn next(&mut self) -> Option<usize> {
40
// Add 1 then multiply by some 32 bit prime.
41
- self.state = self.state.wrapping_add(1).wrapping_mul(3787392781);
+ self.state = self.state.wrapping_add(1).wrapping_mul(3_787_392_781);
42
Some(self.state)
43
}
44
0 commit comments