Commits
Click on a commit to change the comparison rangeperf(linter): use `Cell` instead of `RefCell` (#13330)
Follow-on after #12724. Small perf optimization.
`Cell` is cheaper than `RefCell`, because it doesn't do runtime aliasing checks. It's preferable when the contained type is small and `Copy`, as is the case here (`usize`).3 months ago
by overlookmotel