Files
rust/src/libstd/io
Ulrik Sverdrup 6ac0ba3c3a Improve Vec::resize so that it can be used in Read::read_to_end
We needed a more efficient way to zerofill the vector in read_to_end.
This to reduce the memory intialization overhead to a minimum.

Use the implementation of `std::vec::from_elem` (used for the vec![]
macro) for Vec::resize as well. For simple element types like u8, this
compiles to memset, so it makes Vec::resize much more efficient.
2015-07-08 19:40:40 +02:00
..
2015-06-19 12:55:59 -04:00
2015-03-31 16:12:48 -07:00
2015-04-07 17:54:34 -07:00
2015-06-30 19:53:05 +02:00