| 183 | /// Tri-state booleans packed as (present, value) bit pairs. |
| 184 | #[derive(Default, Clone, Copy)] |
| 185 | pub struct BoolFlags(pub u16); |
| 186 | |
| 187 | impl BoolFlags { |
| 188 | pub fn set(&mut self, pair: u16, value: bool) { |
nothing calls this directly
no outgoing calls
no test coverage detected