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 b60e785 commit e973214Copy full SHA for e973214
src/lib.rs
@@ -794,14 +794,17 @@ impl StdRng {
794
}
795
796
impl Rng for StdRng {
797
+ #[inline]
798
fn next_u32(&mut self) -> u32 {
799
self.rng.next_u32()
800
801
802
803
fn next_u64(&mut self) -> u64 {
804
self.rng.next_u64()
805
806
807
808
fn fill_bytes(&mut self, dest: &mut [u8]) {
809
self.rng.fill_bytes(dest)
810
0 commit comments