(&mut self, len: usize)
| 663 | /// Panics if `len` exceeds the buffer capacity. |
| 664 | #[inline] |
| 665 | pub unsafe fn set_len(&mut self, len: usize) { |
| 666 | assert!(len <= self.capacity()); |
| 667 | self.len = len; |
| 668 | } |
| 669 | |
| 670 | /// Invokes `f` with values `0..len` collecting the boolean results into a new `MutableBuffer` |
| 671 | /// |
no outgoing calls
no test coverage detected