Update 2014-12-15-this-week-in-rust.md

This commit is contained in:
Alexis Beingessner 2014-12-16 22:22:13 -05:00
parent 82bd1b3efa
commit 7dfb4765a5
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ Now you can follow breaking changes *[as they happen][BitRust]*!
* [`String` implements `FromIterator<&str>` and * [`String` implements `FromIterator<&str>` and
`Extend<&str>`][extend], which means that iterators of `&str` can be `Extend<&str>`][extend], which means that iterators of `&str` can be
collected into or appended on to a single string, e.g. `let s: collected into or appended on to a single string, e.g. `let s:
String = vec!["foo", "bar"].collect();`, `let s = String::new(); String = vec!["foo", "bar"].into_iter().collect();`, `let s = String::new();
s.extend(vec!["foo", "bar"]);`. s.extend(vec!["foo", "bar"].into_iter());`.
* New `os::unix` and `os::windows` modules provide [platform-specific * New `os::unix` and `os::windows` modules provide [platform-specific
interop with `std::io`][io]. interop with `std::io`][io].
* The `TupleN` traits [are deprecated][tuplen] because tuple indexing * The `TupleN` traits [are deprecated][tuplen] because tuple indexing