mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 14:17:23 +00:00
Add associated constant `BITS` to all integer types Recently I've regularly come across this snippet (in a few different crates, including `core` and `std`): ```rust std::mem::size_of<usize>() * 8 ``` I think it's time for a `usize::BITS`.