Computes the next random number and returns it.
(&mut self)
| 112 | |
| 113 | /// Computes the next random number and returns it. |
| 114 | fn next(&mut self) -> f64 { |
| 115 | self.last = self.prng.next_u32(); |
| 116 | self.last() |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | /// The `ABS` function. |
no test coverage detected