()
| 1074 | } |
| 1075 | |
| 1076 | fn current_time_millis() -> u64 { |
| 1077 | SystemTime::now() |
| 1078 | .duration_since(UNIX_EPOCH) |
| 1079 | .unwrap_or_default() |
| 1080 | .as_millis() as u64 |
| 1081 | } |
| 1082 | |
| 1083 | /// Random f64 in [0, 1) using RandomState for per-process entropy. |
| 1084 | fn rand_f64() -> f64 { |
no outgoing calls
no test coverage detected