rust/vec.md

7 lines
230 B
Markdown
Raw Normal View History

2015-06-21 01:15:48 -05:00
% Example: Implementing Vec
To bring everything together, we're going to write `std::Vec` from scratch.
2015-06-25 04:24:14 -05:00
Because all the best tools for writing unsafe code are unstable, this
2015-06-21 01:15:48 -05:00
project will only work on nightly (as of Rust 1.2.0).