]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #40783 - stepancheg:cursor-new-0, r=aturon
authorCorey Farwell <coreyf@rwell.org>
Wed, 29 Mar 2017 03:19:23 +0000 (23:19 -0400)
committerGitHub <noreply@github.com>
Wed, 29 Mar 2017 03:19:23 +0000 (23:19 -0400)
Document Cursor::new position is 0

... 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]
```


Trivial merge