(&mut self, additional: usize)
| 396 | /// Panics if the new capacity exceeds `isize::MAX` bytes. |
| 397 | #[inline] |
| 398 | pub fn reserve(&mut self, additional: usize) { |
| 399 | self.bytes.reserve(additional) |
| 400 | } |
| 401 | |
| 402 | /// Tries to reserve capacity for at least `additional` more bytes to be |
| 403 | /// inserted in the given `Wtf8Buf`. The `Wtf8Buf` may reserve more space to |
no outgoing calls
no test coverage detected