USER

    Implementing Rust's Vec from scratch

    1) 기본은 리스트를 구현 A Singly Linked List in Rust youtu.be/IiDHTIsmUi4 2) Vec을 구현하자 Rustonomicon 문서 doc.rust-lang.org/nomicon/vec.html Implementing Vec - The Rustonomicon To bring everything together, we're going to write std::Vec from scratch. Because all the best tools for writing unsafe code are unstable, this project will only work on nightly (as of Rust 1.9.0). With the exception of the allocator..