(&mut self, n: usize)
| 262 | /// ``` |
| 263 | #[inline] |
| 264 | pub fn ensure_capacity(&mut self, n: usize) { |
| 265 | self.try_ensure_capacity(n).unwrap() |
| 266 | } |
| 267 | |
| 268 | /// Like [`CompoundBitSet::ensure_capacity`] but returns an error on |
| 269 | /// allocation failure. |
no test coverage detected