Sets the bit at the provided `bit_idx` to `yes` (`true` or `false`). ## Example ```rust use alloc::alloc::Global; let mut bitmap = Bitmap::new_in(Global, 4096); assert!(!bitmap.is_set(69)); bitmap.set(69, true); assert!(bitmap.is_set(69)); ```
(&mut self, bit_idx: usize, yes: bool)
source not stored for this graph (policy: none)