(c: &Cell<T>, f: impl FnOnce(T) -> T)
| 262 | // https://github.com/rust-lang/rust/issues/50186 |
| 263 | #[inline] |
| 264 | fn cell_update<T: Copy>(c: &Cell<T>, f: impl FnOnce(T) -> T) { |
| 265 | c.set(f(c.get())) |
| 266 | } |
| 267 | |
| 268 | // Computes the `debit_factor` (aka, the amount that debits are multiplied by) from the |
| 269 | // `timing_factor` configured by the user. It should always be > 1.0. |
no test coverage detected