... even if contained `Vec` is not empty. E. g. for
```
let v = vec![10u8, 20];
let mut c = io::Cursor::new(v);
c.write_all(b"aaaa").unwrap();
println!("{:?}", c.into_inner());
```
result is
```
[97, 97, 97, 97]
```
and not
```
[10, 20, 97, 97, 97, 97]
```
|
||
|---|---|---|
| .. | ||
| buffered.rs | ||
| cursor.rs | ||
| error.rs | ||
| impls.rs | ||
| lazy.rs | ||
| mod.rs | ||
| prelude.rs | ||
| stdio.rs | ||
| util.rs | ||