An open API service indexing awesome lists of open source software.

https://github.com/lyonsyonii/mycollections

Manual implementation of Rust's std::collections. Made for fun.
https://github.com/lyonsyonii/mycollections

Last synced: 3 months ago
JSON representation

Manual implementation of Rust's std::collections. Made for fun.

Awesome Lists containing this project

README

          

My own implementations of the data structures in the Rust `std::collections` module.

All methods and structs are fully documented (enforced by `#[deny(missing_docs)]`).

All collections support ZSTs (zero-sized types).

Currently implemented:
- `Vec`
- `LinkedList`
- `Deque`