Simplify comments on the Color struct

This commit is contained in:
Keavon Chambers
2026-06-15 22:20:31 -07:00
parent 9f01e54a9b
commit a5e7a4f905
2 changed files with 6 additions and 57 deletions
@@ -16,7 +16,6 @@ pub type StorageType = u128;
// KeyStates
// =========
// Base-2 logarithm of the storage type used to represents how many bits you need to fully address every bit in that storage type
const STORAGE_SIZE: u32 = (std::mem::size_of::<StorageType>() * 8).trailing_zeros();
const STORAGE_SIZE_BITS: usize = 1 << STORAGE_SIZE;
const KEY_MASK_STORAGE_LENGTH: usize = (NUMBER_OF_KEYS + STORAGE_SIZE_BITS - 1) >> STORAGE_SIZE;